Passed
Pull Request — master (#11)
by
unknown
08:02
created
src/PurpleBooth/GitGitHubLint/GitHubMessageImplementation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace PurpleBooth\GitGitHubLint;
4 4
 
5 5
 use PurpleBooth\GitLintValidators\Status\Status;
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         usort(
43 43
             $statuses,
44
-            function (Status $statusA, Status $statusB) {
44
+            function(Status $statusA, Status $statusB) {
45 45
                 return $statusA->getWeight() <=> $statusB->getWeight();
46 46
             }
47 47
         );
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/StatusSendService.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
 namespace PurpleBooth\GitGitHubLint;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/AnalysePullRequestCommitsImplementation.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 PurpleBooth\GitGitHubLint;
5 5
 
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/Exception/GitHubLintException.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 PurpleBooth\GitGitHubLint\Exception;
5 5
 
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/GitHubLint.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
 namespace PurpleBooth\GitGitHubLint;
4 4
 
5 5
 use PurpleBooth\GitGitHubLint\Exception\GitHubLintException;
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/Status/SuccessStatus.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
 namespace PurpleBooth\GitGitHubLint\Status;
4 4
 
5 5
 use PurpleBooth\GitLintValidators\Status\Status;
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/Status/PreviousFailureStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace PurpleBooth\GitGitHubLint\Status;
6 6
 
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/ValidateMessages.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
 namespace PurpleBooth\GitGitHubLint;
4 4
 
5 5
 use PurpleBooth\GitLintValidators\Message;
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/Command/EvaluatePullRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace PurpleBooth\GitGitHubLint\Command;
5 5
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         $lintTool->analyse(
116 116
             $gitHubUsername,
117 117
             $gitHubRepository,
118
-            (int)$pullRequestId
118
+            (int) $pullRequestId
119 119
         );
120 120
         $styleHelper->success("Finished!");
121 121
 
Please login to merge, or discard this patch.