Completed
Push — master ( d94f6e...0cf574 )
by Daniel
02:16
created
ComposerPackagesListing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     protected function getPackageDetailsFromGivenComposerLockFile($fileToRead)
46 46
     {
47 47
         if (!file_exists($fileToRead)) {
48
-            return ['error' => $fileToRead . ' was not found'];
48
+            return ['error' => $fileToRead.' was not found'];
49 49
         }
50 50
         $dNA      = '---';
51 51
         $alnfo    = [];
Please login to merge, or discard this patch.
tests/php-unit/ComposerPackagesListingTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     {
35 35
         $pathParts = explode(DIRECTORY_SEPARATOR, __DIR__);
36 36
         $file      = implode(DIRECTORY_SEPARATOR, array_diff($pathParts, ['tests', 'php-unit']))
37
-                . DIRECTORY_SEPARATOR . 'composer.lock';
37
+                . DIRECTORY_SEPARATOR.'composer.lock';
38 38
         $actual    = $this->getPackageDetailsFromGivenComposerLockFile($file);
39 39
         $this->assertArrayHasKey('Aging', $actual['gettext/gettext']);
40 40
     }
Please login to merge, or discard this patch.