Skip to content

Commit

Permalink
cs-fix related updates
Browse files Browse the repository at this point in the history
  • Loading branch information
marek committed Sep 22, 2023
1 parent c5e88c4 commit 63d0f6d
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 27 deletions.
3 changes: 0 additions & 3 deletions DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

class Configuration implements ConfigurationInterface
{
/**
* {@inheritdoc}
*/
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('lexik_cron_file_generator');
Expand Down
3 changes: 0 additions & 3 deletions DependencyInjection/LexikCronFileGeneratorExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@

class LexikCronFileGeneratorExtension extends Extension
{
/**
* {@inheritdoc}
*/
public function load(array $configs, ContainerBuilder $container): void
{
$configuration = new Configuration();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 0 additions & 6 deletions Tests/Functional/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,13 @@ abstract class TestCase extends WebTestCase

protected static $client;

/**
* {@inheritdoc}
*/
protected static function createKernel(array $options = []): KernelInterface
{
require_once __DIR__.'/app/AppKernel.php';

return new AppKernel('test', true, isset($options['config']) ? $options['config'] : 'base');
}

/**
* {@inheritdoc}
*/
protected function setUp(): void
{
$fs = new Filesystem();
Expand Down
9 changes: 0 additions & 9 deletions Tests/Functional/app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ public function __construct(string $environment, bool $debug, string $config = '
$this->config = $config;
}

/**
* {@inheritdoc}
*/
public function registerBundles(): iterable
{
return [
Expand All @@ -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';
Expand Down

0 comments on commit 63d0f6d

Please sign in to comment.