@@ -9,15 +9,15 @@ |
||
9 | 9 | use Ps2alerts\Api\Command\TestCommand; |
10 | 10 | use Symfony\Component\Console\Application; |
11 | 11 | |
12 | -require __DIR__ . '/../vendor/autoload.php'; |
|
12 | +require __DIR__.'/../vendor/autoload.php'; |
|
13 | 13 | |
14 | 14 | // ENV loading |
15 | 15 | josegonzalez\Dotenv\Loader::load([ |
16 | - 'filepath' => __DIR__ . '/../.env', |
|
16 | + 'filepath' => __DIR__.'/../.env', |
|
17 | 17 | 'toEnv' => true |
18 | 18 | ]); |
19 | 19 | |
20 | -include __DIR__ . '/Command/CommandsCommon.php'; |
|
20 | +include __DIR__.'/Command/CommandsCommon.php'; |
|
21 | 21 | |
22 | 22 | $application = new Application(); |
23 | 23 | // List commands here |
@@ -23,10 +23,10 @@ |
||
23 | 23 | 'Who do you want to greet?' |
24 | 24 | ) |
25 | 25 | ->addOption( |
26 | - 'yell', |
|
27 | - null, |
|
28 | - InputOption::VALUE_NONE, |
|
29 | - 'If set, the task will yell in uppercase letters' |
|
26 | + 'yell', |
|
27 | + null, |
|
28 | + InputOption::VALUE_NONE, |
|
29 | + 'If set, the task will yell in uppercase letters' |
|
30 | 30 | ) |
31 | 31 | ; |
32 | 32 | $this->config = $this->container->get('config'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | protected function configure() |
13 | 13 | { |
14 | - $container = include __DIR__ . '/../container.php'; |
|
14 | + $container = include __DIR__.'/../container.php'; |
|
15 | 15 | |
16 | 16 | $this->container = $container; |
17 | 17 | $this->auraFactory = $container->get('Ps2alerts\Api\Factory\AuraFactory'); |