Skip to content

Commit 47d5519

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent e5d4d84 commit 47d5519

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

GenericRuntime.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,6 @@ public function __construct(array $options = [])
8383
$this->options = $options;
8484
}
8585

86-
/**
87-
* {@inheritdoc}
88-
*/
8986
public function getResolver(callable $callable, \ReflectionFunction $reflector = null): ResolverInterface
9087
{
9188
$callable = $callable(...);
@@ -114,9 +111,6 @@ public function getResolver(callable $callable, \ReflectionFunction $reflector =
114111
return new ClosureResolver($callable, $arguments);
115112
}
116113

117-
/**
118-
* {@inheritdoc}
119-
*/
120114
public function getRunner(?object $application): RunnerInterface
121115
{
122116
if (null === $application) {

Resolver/ClosureResolver.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ public function __construct(\Closure $closure, \Closure $arguments)
2727
$this->arguments = $arguments;
2828
}
2929

30-
/**
31-
* {@inheritdoc}
32-
*/
3330
public function resolve(): array
3431
{
3532
return [$this->closure, ($this->arguments)()];

Resolver/DebugClosureResolver.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
class DebugClosureResolver extends ClosureResolver
1818
{
19-
/**
20-
* {@inheritdoc}
21-
*/
2219
public function resolve(): array
2320
{
2421
[$closure, $arguments] = parent::resolve();

0 commit comments

Comments
 (0)