Skip to content

Commit 9c154e7

Browse files
committed
[Workflow] improve docblocks
1 parent e493a1b commit 9c154e7

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

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 <[email protected]>
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 <[email protected]>
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
*/

0 commit comments

Comments
 (0)