@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * Copyright (c) 2015-2016 Andreas Heigl<[email protected]> |
@@ -83,16 +83,16 @@ |
||
| 83 | 83 | |
| 84 | 84 | $start = new \DateTime($input->getOption('start')); |
| 85 | 85 | |
| 86 | - if (! $start instanceof \DateTime) { |
|
| 86 | + if (!$start instanceof \DateTime) { |
|
| 87 | 87 | throw new \InvalidArgumentException('The given date could not be parsed'); |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $config = parse_ini_file(__DIR__ . '/../../config/callingallpapers.ini'); |
|
| 90 | + $config = parse_ini_file(__DIR__.'/../../config/callingallpapers.ini'); |
|
| 91 | 91 | |
| 92 | 92 | $client = new Client([ |
| 93 | 93 | 'headers' => [ |
| 94 | 94 | 'Accept' => 'application/json', |
| 95 | - 'Authorization' => 'token ' . $config['github.token'], |
|
| 95 | + 'Authorization' => 'token '.$config['github.token'], |
|
| 96 | 96 | ], |
| 97 | 97 | ]); |
| 98 | 98 | |