diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 7b23ff2..4bc06e6 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -7,9 +7,6 @@ class Configuration implements ConfigurationInterface { - /** - * {@inheritdoc} - */ public function getConfigTreeBuilder(): TreeBuilder { $treeBuilder = new TreeBuilder('lexik_cron_file_generator'); diff --git a/DependencyInjection/LexikCronFileGeneratorExtension.php b/DependencyInjection/LexikCronFileGeneratorExtension.php index 643513e..6bc877c 100644 --- a/DependencyInjection/LexikCronFileGeneratorExtension.php +++ b/DependencyInjection/LexikCronFileGeneratorExtension.php @@ -10,9 +10,6 @@ class LexikCronFileGeneratorExtension extends Extension { - /** - * {@inheritdoc} - */ public function load(array $configs, ContainerBuilder $container): void { $configuration = new Configuration(); diff --git a/Tests/Functional/Bundle/DependencyInjection/BundleExtension.php b/Tests/Functional/Bundle/DependencyInjection/BundleExtension.php index 2e9c83e..b74af73 100644 --- a/Tests/Functional/Bundle/DependencyInjection/BundleExtension.php +++ b/Tests/Functional/Bundle/DependencyInjection/BundleExtension.php @@ -9,16 +9,10 @@ class BundleExtension extends Extension implements PrependExtensionInterface { - /** - * {@inheritdoc} - */ public function load(array $configs, ContainerBuilder $container): void { } - /** - * {@inheritdoc} - */ public function prepend(ContainerBuilder $container): void { // Annotation must be disabled since this bundle doesn't use Doctrine diff --git a/Tests/Functional/TestCase.php b/Tests/Functional/TestCase.php index a755e82..2e1ad1a 100644 --- a/Tests/Functional/TestCase.php +++ b/Tests/Functional/TestCase.php @@ -12,9 +12,6 @@ abstract class TestCase extends WebTestCase protected static $client; - /** - * {@inheritdoc} - */ protected static function createKernel(array $options = []): KernelInterface { require_once __DIR__.'/app/AppKernel.php'; @@ -22,9 +19,6 @@ protected static function createKernel(array $options = []): KernelInterface return new AppKernel('test', true, isset($options['config']) ? $options['config'] : 'base'); } - /** - * {@inheritdoc} - */ protected function setUp(): void { $fs = new Filesystem(); diff --git a/Tests/Functional/app/AppKernel.php b/Tests/Functional/app/AppKernel.php index cf9de83..2f092c8 100644 --- a/Tests/Functional/app/AppKernel.php +++ b/Tests/Functional/app/AppKernel.php @@ -22,9 +22,6 @@ public function __construct(string $environment, bool $debug, string $config = ' $this->config = $config; } - /** - * {@inheritdoc} - */ public function registerBundles(): iterable { return [ @@ -35,17 +32,11 @@ public function registerBundles(): iterable ]; } - /** - * {@inheritdoc} - */ public function getCacheDir(): string { return sys_get_temp_dir().'/LexikCronFileGeneratorBundle/cache'; } - /** - * {@inheritdoc} - */ public function getLogDir(): string { return sys_get_temp_dir().'/LexikCronFileGeneratorBundle/logs';