Completed
Push — master ( 282d86...edb309 )
by Daniel
01:18
created
ComposerPackagesListing.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             'Machine Type'                  => php_uname('m'),
69 69
             'Operating System Architecture' => $knownValues[php_uname('m')],
70 70
             'Operating System Name'         => php_uname('s'),
71
-            'Operating System Version'      => php_uname('r') . ' ' . php_uname('v'),
71
+            'Operating System Version'      => php_uname('r').' '.php_uname('v'),
72 72
         ];
73 73
     }
74 74
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             'Url'             => 'https://github.com/php/php-src',
93 93
             'Vendor'          => 'The PHP Group',
94 94
             'Version'         => PHP_VERSION,
95
-            'Version no.'     => PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION . '.' . PHP_RELEASE_VERSION,
95
+            'Version no.'     => PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION.'.'.PHP_RELEASE_VERSION,
96 96
         ];
97 97
         if ($skipAging) {
98 98
             unset($aReturn['Aging']);
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     protected function getFileModifiedTimestampOfFile($fileName, $format = 'Y-m-d H:i:s', $resultInUtc = false)
112 112
     {
113 113
         if (!file_exists($fileName)) {
114
-            return ['error' => $fileName . ' was not found'];
114
+            return ['error' => $fileName.' was not found'];
115 115
         }
116 116
         $info = new \SplFileInfo($fileName);
117 117
         if ($format === 'PHPtime') {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     protected function getPackageDetailsFromGivenComposerLockFile($fileToRead, $devInstead = false, $skipAging = false)
134 134
     {
135 135
         if (!file_exists($fileToRead)) {
136
-            return ['error' => $fileToRead . ' was not found'];
136
+            return ['error' => $fileToRead.' was not found'];
137 137
         }
138 138
         $dNA      = '---';
139 139
         $alnfo    = [];
Please login to merge, or discard this patch.