Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[Workflow] Fixed PHPDocs #20470

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Symfony/Component/Workflow/Definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ final class Definition
private $initialPlace;

/**
* Definition constructor.
*
* @param string[] $places
* @param Transition[] $transitions
* @param string|null $initialPlace
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Workflow/Event/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ class Event extends BaseEvent
private $transition;

/**
* Event constructor.
*
* @param object $subject
* @param Marking $marking
* @param Transition $transition
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* subject.
*
* This store deals with a "multiple state" Marking. It means a subject can be
* in many state at the same time.
* in many states at the same time.
*
* @author Grégoire Pineau <[email protected]>
*/
Expand All @@ -30,8 +30,6 @@ class MultipleStateMarkingStore implements MarkingStoreInterface
private $propertyAccessor;

/**
* MultipleStateMarkingStore constructor.
*
* @param string $property
* @param PropertyAccessorInterface|null $propertyAccessor
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* SingleStateMarkingStore stores the marking into a property of the subject.
*
* This store deals with a "single state" Marking. It means a subject can be in
* one and only state at the same time.
* one and only one state at the same time.
*
* @author Grégoire Pineau <[email protected]>
*/
Expand All @@ -29,8 +29,6 @@ class SingleStateMarkingStore implements MarkingStoreInterface
private $propertyAccessor;

/**
* SingleStateMarkingStore constructor.
*
* @param string $property
* @param PropertyAccessorInterface|null $propertyAccessor
*/
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Workflow/Transition.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ class Transition
private $tos;

/**
* Transition constructor.
*
* @param string $name
* @param string|string[] $froms
* @param string|string[] $tos
Expand Down