Skip to content

Commit 93f2d3b

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 5049eb0 commit 93f2d3b

File tree

6 files changed

+0
-43
lines changed

6 files changed

+0
-43
lines changed

Dumper/GraphvizDumper.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ class GraphvizDumper implements DumperInterface
3434
];
3535

3636
/**
37-
* {@inheritdoc}
38-
*
3937
* Dumps the workflow as a graphviz graph.
4038
*
4139
* Available options:

Dumper/StateMachineGraphvizDumper.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
class StateMachineGraphvizDumper extends GraphvizDumper
1818
{
1919
/**
20-
* {@inheritdoc}
21-
*
2220
* Dumps the workflow as a graphviz graph.
2321
*
2422
* Available options:

Event/GuardEvent.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ final class GuardEvent extends Event
2525
{
2626
private TransitionBlockerList $transitionBlockerList;
2727

28-
/**
29-
* {@inheritdoc}
30-
*/
3128
public function __construct(object $subject, Marking $marking, Transition $transition, WorkflowInterface $workflow = null)
3229
{
3330
parent::__construct($subject, $marking, $transition, $workflow);

MarkingStore/MethodMarkingStore.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ public function __construct(bool $singleState = false, string $property = 'marki
4343
$this->property = $property;
4444
}
4545

46-
/**
47-
* {@inheritdoc}
48-
*/
4946
public function getMarking(object $subject): Marking
5047
{
5148
$method = 'get'.ucfirst($this->property);
@@ -77,9 +74,6 @@ public function getMarking(object $subject): Marking
7774
return new Marking($marking);
7875
}
7976

80-
/**
81-
* {@inheritdoc}
82-
*/
8377
public function setMarking(object $subject, Marking $marking, array $context = [])
8478
{
8579
$marking = $marking->getPlaces();

SupportStrategy/InstanceOfSupportStrategy.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ public function __construct(string $className)
2626
$this->className = $className;
2727
}
2828

29-
/**
30-
* {@inheritdoc}
31-
*/
3229
public function supports(WorkflowInterface $workflow, object $subject): bool
3330
{
3431
return $subject instanceof $this->className;

Workflow.php

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,6 @@ public function __construct(Definition $definition, MarkingStoreInterface $marki
7676
$this->eventsToDispatch = $eventsToDispatch;
7777
}
7878

79-
/**
80-
* {@inheritdoc}
81-
*/
8279
public function getMarking(object $subject, array $context = []): Marking
8380
{
8481
$marking = $this->markingStore->getMarking($subject);
@@ -118,9 +115,6 @@ public function getMarking(object $subject, array $context = []): Marking
118115
return $marking;
119116
}
120117

121-
/**
122-
* {@inheritdoc}
123-
*/
124118
public function can(object $subject, string $transitionName): bool
125119
{
126120
$transitions = $this->definition->getTransitions();
@@ -141,9 +135,6 @@ public function can(object $subject, string $transitionName): bool
141135
return false;
142136
}
143137

144-
/**
145-
* {@inheritdoc}
146-
*/
147138
public function buildTransitionBlockerList(object $subject, string $transitionName): TransitionBlockerList
148139
{
149140
$transitions = $this->definition->getTransitions();
@@ -177,9 +168,6 @@ public function buildTransitionBlockerList(object $subject, string $transitionNa
177168
return $transitionBlockerList;
178169
}
179170

180-
/**
181-
* {@inheritdoc}
182-
*/
183171
public function apply(object $subject, string $transitionName, array $context = []): Marking
184172
{
185173
$marking = $this->getMarking($subject, $context);
@@ -245,9 +233,6 @@ public function apply(object $subject, string $transitionName, array $context =
245233
return $marking;
246234
}
247235

248-
/**
249-
* {@inheritdoc}
250-
*/
251236
public function getEnabledTransitions(object $subject): array
252237
{
253238
$enabledTransitions = [];
@@ -282,33 +267,21 @@ public function getEnabledTransition(object $subject, string $name): ?Transition
282267
return null;
283268
}
284269

285-
/**
286-
* {@inheritdoc}
287-
*/
288270
public function getName(): string
289271
{
290272
return $this->name;
291273
}
292274

293-
/**
294-
* {@inheritdoc}
295-
*/
296275
public function getDefinition(): Definition
297276
{
298277
return $this->definition;
299278
}
300279

301-
/**
302-
* {@inheritdoc}
303-
*/
304280
public function getMarkingStore(): MarkingStoreInterface
305281
{
306282
return $this->markingStore;
307283
}
308284

309-
/**
310-
* {@inheritdoc}
311-
*/
312285
public function getMetadataStore(): MetadataStoreInterface
313286
{
314287
return $this->definition->getMetadataStore();

0 commit comments

Comments
 (0)