Skip to content

Commit 19ab885

Browse files
committed
Fix CS
1 parent f1dce66 commit 19ab885

5 files changed

+5
-5
lines changed

MarkingStore/MarkingStoreInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ public function getMarking($subject);
3939
* @param object $subject A subject
4040
* @param array $context Some context
4141
*/
42-
public function setMarking($subject, Marking $marking/*, array $context = []*/);
42+
public function setMarking($subject, Marking $marking/* , array $context = [] */);
4343
}

MarkingStore/MultipleStateMarkingStore.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getMarking($subject)
5252
*
5353
* @param array $context Some context
5454
*/
55-
public function setMarking($subject, Marking $marking/*, array $context = []*/)
55+
public function setMarking($subject, Marking $marking/* , array $context = [] */)
5656
{
5757
$this->propertyAccessor->setValue($subject, $this->property, $marking->getPlaces());
5858
}

MarkingStore/SingleStateMarkingStore.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function getMarking($subject)
5757
*
5858
* @param array $context Some context
5959
*/
60-
public function setMarking($subject, Marking $marking/*, array $context = []*/)
60+
public function setMarking($subject, Marking $marking/* , array $context = [] */)
6161
{
6262
$this->propertyAccessor->setValue($subject, $this->property, key($marking->getPlaces()));
6363
}

Workflow.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function buildTransitionBlockerList($subject, string $transitionName): Tr
159159
*
160160
* @param array $context Some context
161161
*/
162-
public function apply($subject, $transitionName/*, array $context = []*/)
162+
public function apply($subject, $transitionName/* , array $context = [] */)
163163
{
164164
$context = \func_get_args()[2] ?? [];
165165

WorkflowInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function buildTransitionBlockerList($subject, string $transitionName): Tr
5959
*
6060
* @throws LogicException If the transition is not applicable
6161
*/
62-
public function apply($subject, $transitionName/*, array $context = []*/);
62+
public function apply($subject, $transitionName/* , array $context = [] */);
6363

6464
/**
6565
* Returns all enabled transitions.

0 commit comments

Comments
 (0)