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