Skip to content

Commit 191f236

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 4bcc66b commit 191f236

File tree

56 files changed

+0
-303
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+0
-303
lines changed

Argument/BoundArgument.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,11 @@ public function __construct(mixed $value, bool $trackUsage = true, int $type = 0
4040
$this->file = $file;
4141
}
4242

43-
/**
44-
* {@inheritdoc}
45-
*/
4643
public function getValues(): array
4744
{
4845
return [$this->value, $this->identifier, $this->used, $this->type, $this->file];
4946
}
5047

51-
/**
52-
* {@inheritdoc}
53-
*/
5448
public function setValues(array $values)
5549
{
5650
if (5 === \count($values)) {

Argument/ServiceClosureArgument.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,11 @@ public function __construct(mixed $value)
2727
$this->values = [$value];
2828
}
2929

30-
/**
31-
* {@inheritdoc}
32-
*/
3330
public function getValues(): array
3431
{
3532
return $this->values;
3633
}
3734

38-
/**
39-
* {@inheritdoc}
40-
*/
4135
public function setValues(array $values)
4236
{
4337
if ([0] !== array_keys($values)) {

Argument/ServiceLocator.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ public function __construct(\Closure $factory, array $serviceMap, array $service
3232
parent::__construct($serviceMap);
3333
}
3434

35-
/**
36-
* {@inheritdoc}
37-
*/
3835
public function get(string $id): mixed
3936
{
4037
return match (\count($this->serviceMap[$id] ?? [])) {
@@ -44,9 +41,6 @@ public function get(string $id): mixed
4441
};
4542
}
4643

47-
/**
48-
* {@inheritdoc}
49-
*/
5044
public function getProvidedServices(): array
5145
{
5246
return $this->serviceTypes ??= array_map(function () { return '?'; }, $this->serviceMap);

Compiler/AbstractRecursivePass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ abstract class AbstractRecursivePass implements CompilerPassInterface
3636
private ExpressionLanguage $expressionLanguage;
3737
private bool $inExpression = false;
3838

39-
/**
40-
* {@inheritdoc}
41-
*/
4239
public function process(ContainerBuilder $container)
4340
{
4441
$this->container = $container;

Compiler/AliasDeprecatedPublicServicesPass.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ final class AliasDeprecatedPublicServicesPass extends AbstractRecursivePass
1919
{
2020
private array $aliases = [];
2121

22-
/**
23-
* {@inheritdoc}
24-
*/
2522
protected function processValue(mixed $value, bool $isRoot = false): mixed
2623
{
2724
if ($value instanceof Reference && isset($this->aliases[$id = (string) $value])) {
@@ -31,9 +28,6 @@ protected function processValue(mixed $value, bool $isRoot = false): mixed
3128
return parent::processValue($value, $isRoot);
3229
}
3330

34-
/**
35-
* {@inheritdoc}
36-
*/
3731
public function process(ContainerBuilder $container)
3832
{
3933
foreach ($container->findTaggedServiceIds('container.private') as $id => $tags) {

Compiler/AutoAliasServicePass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
*/
2121
class AutoAliasServicePass implements CompilerPassInterface
2222
{
23-
/**
24-
* {@inheritdoc}
25-
*/
2623
public function process(ContainerBuilder $container)
2724
{
2825
foreach ($container->findTaggedServiceIds('auto_alias') as $serviceId => $tags) {

Compiler/AutowireAsDecoratorPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
*/
2222
final class AutowireAsDecoratorPass implements CompilerPassInterface
2323
{
24-
/**
25-
* {@inheritdoc}
26-
*/
2724
public function process(ContainerBuilder $container)
2825
{
2926
foreach ($container->getDefinitions() as $definition) {

Compiler/AutowirePass.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ public function __construct(bool $throwOnAutowireException = true)
6161
};
6262
}
6363

64-
/**
65-
* {@inheritdoc}
66-
*/
6764
public function process(ContainerBuilder $container)
6865
{
6966
$this->populateCombinedAliases($container);
@@ -84,9 +81,6 @@ public function process(ContainerBuilder $container)
8481
}
8582
}
8683

87-
/**
88-
* {@inheritdoc}
89-
*/
9084
protected function processValue(mixed $value, bool $isRoot = false): mixed
9185
{
9286
try {

Compiler/AutowireRequiredMethodsPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
*/
2222
class AutowireRequiredMethodsPass extends AbstractRecursivePass
2323
{
24-
/**
25-
* {@inheritdoc}
26-
*/
2724
protected function processValue(mixed $value, bool $isRoot = false): mixed
2825
{
2926
$value = parent::processValue($value, $isRoot);

Compiler/AutowireRequiredPropertiesPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
*/
2525
class AutowireRequiredPropertiesPass extends AbstractRecursivePass
2626
{
27-
/**
28-
* {@inheritdoc}
29-
*/
3027
protected function processValue(mixed $value, bool $isRoot = false): mixed
3128
{
3229
$value = parent::processValue($value, $isRoot);

0 commit comments

Comments
 (0)