File tree Expand file tree Collapse file tree 5 files changed +2
-12
lines changed
src/Symfony/Component/Workflow Expand file tree Collapse file tree 5 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ final class Definition
26
26
private $ initialPlace ;
27
27
28
28
/**
29
- * Definition constructor.
30
- *
31
29
* @param string[] $places
32
30
* @param Transition[] $transitions
33
31
* @param string|null $initialPlace
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ class Event extends BaseEvent
26
26
private $ transition ;
27
27
28
28
/**
29
- * Event constructor.
30
- *
31
29
* @param object $subject
32
30
* @param Marking $marking
33
31
* @param Transition $transition
Original file line number Diff line number Diff line change 20
20
* subject.
21
21
*
22
22
* 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.
24
24
*
25
25
* @author Grégoire Pineau <lyrixx@lyrixx.info>
26
26
*/
@@ -30,8 +30,6 @@ class MultipleStateMarkingStore implements MarkingStoreInterface
30
30
private $ propertyAccessor ;
31
31
32
32
/**
33
- * MultipleStateMarkingStore constructor.
34
- *
35
33
* @param string $property
36
34
* @param PropertyAccessorInterface|null $propertyAccessor
37
35
*/
Original file line number Diff line number Diff line change 19
19
* SingleStateMarkingStore stores the marking into a property of the subject.
20
20
*
21
21
* 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.
23
23
*
24
24
* @author Grégoire Pineau <lyrixx@lyrixx.info>
25
25
*/
@@ -29,8 +29,6 @@ class SingleStateMarkingStore implements MarkingStoreInterface
29
29
private $ propertyAccessor ;
30
30
31
31
/**
32
- * SingleStateMarkingStore constructor.
33
- *
34
32
* @param string $property
35
33
* @param PropertyAccessorInterface|null $propertyAccessor
36
34
*/
Original file line number Diff line number Diff line change @@ -24,8 +24,6 @@ class Transition
24
24
private $ tos ;
25
25
26
26
/**
27
- * Transition constructor.
28
- *
29
27
* @param string $name
30
28
* @param string|string[] $froms
31
29
* @param string|string[] $tos
You can’t perform that action at this time.
0 commit comments