Test Failed
Push — 2.0 ( 02daf0...d3a630 )
by Florian
23:35 queued 12s
created
config/composer_phive.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -9,16 +9,16 @@  discard block
 block discarded – undo
9 9
 $phiveUrl = 'https://phar.io/releases/phive.phar';
10 10
 $phiveKeyUrl = 'https://phar.io/releases/phive.phar.asc';
11 11
 
12
-if (!file_exists('.' . $ds . 'phive.phar')) {
13
-    echo 'Downloading Phive (' . $phiveUrl . ')...' . PHP_EOL;
14
-    file_put_contents('.' . $ds . 'phive.phar', file_get_contents(
12
+if (!file_exists('.'.$ds.'phive.phar')) {
13
+    echo 'Downloading Phive ('.$phiveUrl.')...'.PHP_EOL;
14
+    file_put_contents('.'.$ds.'phive.phar', file_get_contents(
15 15
         $phiveUrl
16 16
     ));
17 17
 }
18 18
 
19
-if (!file_exists('.' . $ds . 'phive.phar.asc')) {
20
-    echo 'Downloading Phive Key (' . $phiveKeyUrl . ')...' . PHP_EOL;
21
-    file_put_contents('.' . $ds . 'phive.phar.asc', file_get_contents(
19
+if (!file_exists('.'.$ds.'phive.phar.asc')) {
20
+    echo 'Downloading Phive Key ('.$phiveKeyUrl.')...'.PHP_EOL;
21
+    file_put_contents('.'.$ds.'phive.phar.asc', file_get_contents(
22 22
         $phiveUrl
23 23
     ));
24 24
 } else {
@@ -41,5 +41,5 @@  discard block
 block discarded – undo
41 41
 $keys = implode(',', $keys);
42 42
 
43 43
 $output = '';
44
-exec('php .' . $ds . 'phive.phar install --target ./bin --trust-gpg-keys ' . $keys . ' --force-accept-unsigned', $output);
44
+exec('php .'.$ds.'phive.phar install --target ./bin --trust-gpg-keys '.$keys.' --force-accept-unsigned', $output);
45 45
 echo implode(PHP_EOL, $output);
Please login to merge, or discard this patch.