Skip to content

Commit 907647e

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 4084f86 commit 907647e

File tree

4 files changed

+0
-18
lines changed

4 files changed

+0
-18
lines changed

DebugBundle.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ public function boot()
4444
}
4545
}
4646

47-
/**
48-
* {@inheritdoc}
49-
*/
5047
public function build(ContainerBuilder $container)
5148
{
5249
parent::build($container);

DependencyInjection/Compiler/DumpDataCollectorPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
*/
2323
class DumpDataCollectorPass implements CompilerPassInterface
2424
{
25-
/**
26-
* {@inheritdoc}
27-
*/
2825
public function process(ContainerBuilder $container)
2926
{
3027
if (!$container->hasDefinition('data_collector.dump')) {

DependencyInjection/Configuration.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
*/
2222
class Configuration implements ConfigurationInterface
2323
{
24-
/**
25-
* {@inheritdoc}
26-
*/
2724
public function getConfigTreeBuilder(): TreeBuilder
2825
{
2926
$treeBuilder = new TreeBuilder('debug');

DependencyInjection/DebugExtension.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@
2929
*/
3030
class DebugExtension extends Extension
3131
{
32-
/**
33-
* {@inheritdoc}
34-
*/
3532
public function load(array $configs, ContainerBuilder $container)
3633
{
3734
$configuration = new Configuration();
@@ -97,17 +94,11 @@ public function load(array $configs, ContainerBuilder $container)
9794
}
9895
}
9996

100-
/**
101-
* {@inheritdoc}
102-
*/
10397
public function getXsdValidationBasePath(): string|false
10498
{
10599
return __DIR__.'/../Resources/config/schema';
106100
}
107101

108-
/**
109-
* {@inheritdoc}
110-
*/
111102
public function getNamespace(): string
112103
{
113104
return 'http://symfony.com/schema/dic/debug';

0 commit comments

Comments
 (0)