@@ -60,7 +60,7 @@ |
||
60 | 60 | |
61 | 61 | $arguments = [ |
62 | 62 | 'command' => 'require', |
63 | - 'packages' => ['bluzphp/module-'. $input->getArgument('module')] |
|
63 | + 'packages' => ['bluzphp/module-' . $input->getArgument('module')] |
|
64 | 64 | ]; |
65 | 65 | |
66 | 66 | // call `composer install` command programmatically |
@@ -60,7 +60,7 @@ |
||
60 | 60 | |
61 | 61 | $arguments = [ |
62 | 62 | 'command' => 'remove', |
63 | - 'packages' => ['bluzphp/module-'. $input->getArgument('module')] |
|
63 | + 'packages' => ['bluzphp/module-' . $input->getArgument('module')] |
|
64 | 64 | ]; |
65 | 65 | |
66 | 66 | // call `composer install` command programmatically |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | // call `codeception run` command programmatically |
57 | 57 | $arguments = [ |
58 | 58 | 'run', |
59 | - '--config '. PATH_ROOT .DS. 'codeception.yml' |
|
59 | + '--config ' . PATH_ROOT . DS . 'codeception.yml' |
|
60 | 60 | ]; |
61 | 61 | |
62 | 62 | if ($group = $input->getArgument('module')) { |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | protected function getCodeceptionApplication() |
75 | 75 | { |
76 | 76 | // @todo need refactoring this part - move functions to separate files |
77 | - require_once PATH_VENDOR .DS. 'codeception' .DS. 'codeception' .DS. 'autoload.php'; |
|
77 | + require_once PATH_VENDOR . DS . 'codeception' . DS . 'codeception' . DS . 'autoload.php'; |
|
78 | 78 | |
79 | 79 | $app = new Codeception\Application('Codeception', Codeception\Codecept::VERSION); |
80 | 80 | $app->add(new Codeception\Command\Run('run')); |
@@ -42,7 +42,7 @@ |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | $phinxArguments['command'] = $commandName; |
45 | - $phinxArguments['--configuration'] = PATH_APPLICATION .DS. 'configs' .DS. 'phinx.php'; |
|
45 | + $phinxArguments['--configuration'] = PATH_APPLICATION . DS . 'configs' . DS . 'phinx.php'; |
|
46 | 46 | $phinxArguments['--environment'] = 'default'; |
47 | 47 | |
48 | 48 | $phinxInput = new ArrayInput($phinxArguments); |