Skip to content

Commit 3253ed3

Browse files
author
Anton
authored
Merge pull request #41 from bluzphp/scrutinizer-patch-1
Scrutinizer Auto-Fixes
2 parents e19a8b3 + 413f3d6 commit 3253ed3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Command/Module/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
6060

6161
$arguments = [
6262
'command' => 'require',
63-
'packages' => ['bluzphp/module-'. $input->getArgument('module')]
63+
'packages' => ['bluzphp/module-' . $input->getArgument('module')]
6464
];
6565

6666
// call `composer install` command programmatically

src/Command/Module/RemoveCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
6060

6161
$arguments = [
6262
'command' => 'remove',
63-
'packages' => ['bluzphp/module-'. $input->getArgument('module')]
63+
'packages' => ['bluzphp/module-' . $input->getArgument('module')]
6464
];
6565

6666
// call `composer install` command programmatically

src/Command/TestCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
5050
// call `codeception run` command programmatically
5151
$arguments = [
5252
'run',
53-
'--config '. PATH_ROOT .DS. 'codeception.yml'
53+
'--config ' . PATH_ROOT . DS . 'codeception.yml'
5454
];
5555

5656
if ($group = $input->getArgument('module')) {
@@ -68,7 +68,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
6868
protected function getCodeceptionApplication()
6969
{
7070
// @todo need refactoring this part - move functions to separate files
71-
require_once PATH_VENDOR .DS. 'codeception' .DS. 'codeception' .DS. 'autoload.php';
71+
require_once PATH_VENDOR . DS . 'codeception' . DS . 'codeception' . DS . 'autoload.php';
7272

7373
$app = new Codeception\Application('Codeception', Codeception\Codecept::VERSION);
7474
$app->add(new Codeception\Command\Run('run'));

0 commit comments

Comments
 (0)