Skip to content

Commit e1c54ad

Browse files
authored
Replace PHP_CodeSniffer with EasyCodingStandard (#80)
* Replace PHP_CodeSniffer with EasyCodingStandard * Apply CodeStyle from ECS * Add ECS comments set * Add ECS namespaces set * Add ECS dockblock set * Add ECS array set * Fixed multiple blank lines between methods
1 parent d58fbec commit e1c54ad

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

src/RunCommandJobLauncher.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ public function __construct(
2828
) {
2929
}
3030

31-
/**
32-
* @inheritdoc
33-
*/
3431
public function launch(string $name, array $configuration = []): JobExecution
3532
{
3633
$jobExecution = $this->jobExecutionFactory->create($name, $configuration);

src/RunJobCommand.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ public function __construct(
3434
parent::__construct();
3535
}
3636

37-
/**
38-
* @inheritDoc
39-
*/
4037
protected function configure(): void
4138
{
4239
$this->setDescription('Execute any job.');
@@ -46,9 +43,6 @@ protected function configure(): void
4643
$this->addUsage('export \'{"toFile":"/path/to/file.xml"}\'');
4744
}
4845

49-
/**
50-
* @inheritDoc
51-
*/
5246
protected function execute(InputInterface $input, OutputInterface $output): int
5347
{
5448
/** @var string $jobName */

tests/RunJobCommandTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use Prophecy\Argument;
1010
use Prophecy\PhpUnit\ProphecyTrait;
1111
use Prophecy\Prophecy\ObjectProphecy;
12-
use Psr\EventDispatcher\EventDispatcherInterface;
1312
use Symfony\Component\Console\Output\OutputInterface;
1413
use Symfony\Component\Console\Tester\CommandTester;
1514
use Yokai\Batch\Bridge\Symfony\Console\RunJobCommand;

0 commit comments

Comments
 (0)