Completed
Push — master ( 8eec46...d829b9 )
by Gytis
04:48 queued 27s
created
phpcs_baseline.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 function getRealFilePath(string $filePath): string
88 88
 {
89 89
     if ('.' === $filePath[0]) {
90
-        $realFilePath = realpath(getcwd() . '/' . $filePath);
90
+        $realFilePath = realpath(getcwd().'/'.$filePath);
91 91
     } else {
92 92
         $realFilePath = $filePath;
93 93
     }
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
 function getLineHash(string $fileLine, string $errorLine): string
103 103
 {
104
-    return md5(trim($fileLine . $errorLine));
104
+    return md5(trim($fileLine.$errorLine));
105 105
 }
106 106
 
107 107
 function findViolationId(string $line): ?string
Please login to merge, or discard this patch.