Completed
Push — 2.0 ( 0e31b0...2e5539 )
by David
02:29
created
src/Clover/CloverFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace TheCodingMachine\WashingMachine\Clover;
5 5
 
Please login to merge, or discard this patch.
src/Clover/EmptyCloverFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace TheCodingMachine\WashingMachine\Clover;
5 5
 
Please login to merge, or discard this patch.
src/Clover/Crap4JFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace TheCodingMachine\WashingMachine\Clover;
5 5
 
Please login to merge, or discard this patch.
src/Git/GitRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@
 block discarded – undo
8 8
 {
9 9
     public function getMergeBase(string $commit1, string $commit2) : string
10 10
     {
11
-        $results = $this->extractFromCommand('git merge-base ' . escapeshellarg($commit1). ' '. escapeshellarg($commit2));
11
+        $results = $this->extractFromCommand('git merge-base '.escapeshellarg($commit1).' '.escapeshellarg($commit2));
12 12
 
13 13
         return $results[0];
14 14
     }
15 15
 
16 16
     public function getLatestCommitForBranch(string $branch) : string
17 17
     {
18
-        $results = $this->extractFromCommand('git log -n 1 --pretty=format:"%H" ' . escapeshellarg($branch));
18
+        $results = $this->extractFromCommand('git log -n 1 --pretty=format:"%H" '.escapeshellarg($branch));
19 19
 
20 20
         return $results[0];
21 21
     }
Please login to merge, or discard this patch.
src/Gitlab/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
         $url = $this->getArtifactFileUrl($file->getFilename(), $gitlabUrl, $projectName, $buildId);
126 126
 
127 127
         $this->msg .= sprintf("\n<strong>[%s](%s)</strong>\n", $file->getFilename(), $url);
128
-        $this->msg .= sprintf("```\n%s%s```\n", $text, $isComplete?'':"... (file truncated)\n");
128
+        $this->msg .= sprintf("```\n%s%s```\n", $text, $isComplete ? '' : "... (file truncated)\n");
129 129
 
130 130
         if (!$isComplete) {
131 131
             $this->msg .= sprintf("[Download complete file](%s)\n", $url);
Please login to merge, or discard this patch.
src/Commands/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,9 +53,9 @@
 block discarded – undo
53 53
                 throw new \RuntimeException('Could not find the Gitlab URL in the "CI_REPOSITORY_URL" environment variable (usually set by Gitlab CI). Either set this environment variable or pass the URL via the --gitlab-url command line option.');
54 54
             }
55 55
             $parsed_url = parse_url($ciProjectUrl);
56
-            $scheme   = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : '';
56
+            $scheme   = isset($parsed_url['scheme']) ? $parsed_url['scheme'].'://' : '';
57 57
             $host     = isset($parsed_url['host']) ? $parsed_url['host'] : '';
58
-            $port     = isset($parsed_url['port']) ? ':' . $parsed_url['port'] : '';
58
+            $port     = isset($parsed_url['port']) ? ':'.$parsed_url['port'] : '';
59 59
             $gitlabUrl = $scheme.$host.$port;
60 60
         }
61 61
         return rtrim($gitlabUrl, '/');
Please login to merge, or discard this patch.
src/Commands/RunCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
         $commit = $project->commit($commitRef);
245 245
 
246
-        return $commit->committer ? $commit->committer->id :  null;
246
+        return $commit->committer ? $commit->committer->id : null;
247 247
     }
248 248
 
249 249
     /**
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 
262 262
             $buildService->dumpArtifactFromBranch($projectName, $targetBranch, $jobStage, $tmpFile);
263 263
             $zipFile = new \ZipArchive();
264
-            if ($zipFile->open($tmpFile)!==true) {
264
+            if ($zipFile->open($tmpFile) !== true) {
265 265
                 throw new \RuntimeException('Invalid ZIP archive '.$tmpFile);
266 266
             }
267 267
             return $this->getMeasuresFromZipFile($zipFile, $cloverPath, $crap4JPath);
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
             $build = $buildService->getLatestPipelineFromCommitId($projectName, $commitId);
286 286
             $buildService->dumpArtifact($projectName, $build['id'], $jobStage, $tmpFile);
287 287
             $zipFile = new \ZipArchive();
288
-            if ($zipFile->open($tmpFile)!==true) {
288
+            if ($zipFile->open($tmpFile) !== true) {
289 289
                 throw new \RuntimeException('Invalid ZIP archive '.$tmpFile);
290 290
             }
291 291
             return $this->getMeasuresFromZipFile($zipFile, $cloverPath, $crap4JPath);
Please login to merge, or discard this patch.