Skip to content

Commit d293f60

Browse files
committed
minor #20469 [Workflow] improve docblocks (xabbuh, lyrixx)
This PR was merged into the 3.2-dev branch. Discussion ---------- [Workflow] improve docblocks | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Commits ------- 8eed2aa [Workflow] Fixed PHPDocs 9c154e7 [Workflow] improve docblocks
2 parents e493a1b + 8eed2aa commit d293f60

File tree

5 files changed

+2
-12
lines changed

5 files changed

+2
-12
lines changed

src/Symfony/Component/Workflow/Definition.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ final class Definition
2626
private $initialPlace;
2727

2828
/**
29-
* Definition constructor.
30-
*
3129
* @param string[] $places
3230
* @param Transition[] $transitions
3331
* @param string|null $initialPlace

src/Symfony/Component/Workflow/Event/Event.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ class Event extends BaseEvent
2626
private $transition;
2727

2828
/**
29-
* Event constructor.
30-
*
3129
* @param object $subject
3230
* @param Marking $marking
3331
* @param Transition $transition

src/Symfony/Component/Workflow/MarkingStore/MultipleStateMarkingStore.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* subject.
2121
*
2222
* This store deals with a "multiple state" Marking. It means a subject can be
23-
* in many state at the same time.
23+
* in many states at the same time.
2424
*
2525
* @author Grégoire Pineau <lyrixx@lyrixx.info>
2626
*/
@@ -30,8 +30,6 @@ class MultipleStateMarkingStore implements MarkingStoreInterface
3030
private $propertyAccessor;
3131

3232
/**
33-
* MultipleStateMarkingStore constructor.
34-
*
3533
* @param string $property
3634
* @param PropertyAccessorInterface|null $propertyAccessor
3735
*/

src/Symfony/Component/Workflow/MarkingStore/SingleStateMarkingStore.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* SingleStateMarkingStore stores the marking into a property of the subject.
2020
*
2121
* This store deals with a "single state" Marking. It means a subject can be in
22-
* one and only state at the same time.
22+
* one and only one state at the same time.
2323
*
2424
* @author Grégoire Pineau <lyrixx@lyrixx.info>
2525
*/
@@ -29,8 +29,6 @@ class SingleStateMarkingStore implements MarkingStoreInterface
2929
private $propertyAccessor;
3030

3131
/**
32-
* SingleStateMarkingStore constructor.
33-
*
3432
* @param string $property
3533
* @param PropertyAccessorInterface|null $propertyAccessor
3634
*/

src/Symfony/Component/Workflow/Transition.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class Transition
2424
private $tos;
2525

2626
/**
27-
* Transition constructor.
28-
*
2927
* @param string $name
3028
* @param string|string[] $froms
3129
* @param string|string[] $tos

0 commit comments

Comments
 (0)