Completed
Push — master ( 5da4b2...7163c3 )
by Miro
04:03 queued 01:19
created
src/Branch/GithubBranchId.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
      */
32 32
     public function __toString()
33 33
     {
34
-        return $this->githubRepoId->__toString().'-'.$this->branchName;
34
+        return $this->githubRepoId->__toString() . '-' . $this->branchName;
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
src/Commit/GithubCommitId.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
      */
32 32
     public function __toString()
33 33
     {
34
-        return $this->githubRepoId->__toString().'-'.$this->commitSha->__toString();
34
+        return $this->githubRepoId->__toString() . '-' . $this->commitSha->__toString();
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
src/Commit/State/GithubCommitStateFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
             return new GithubCommitErrorState();
28 28
         }
29 29
 
30
-        throw new Exception($githubCommitStateTest.' is not recognized commit state');
30
+        throw new Exception($githubCommitStateTest . ' is not recognized commit state');
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/CommitStatus/State/GithubCommitStatusStateFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
             return new GithubCommitStatusErrorState();
28 28
         }
29 29
 
30
-        throw new Exception($githubCommitStatusStateTest.' is not recognized commit state');
30
+        throw new Exception($githubCommitStatusStateTest . ' is not recognized commit state');
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/PullRequest/State/GithubPullRequestStateFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
             return new GithubPullRequestClosedState();
24 24
         }
25 25
 
26
-        throw new Exception($githubPullRequestStateTest.' is not recognized pull request state');
26
+        throw new Exception($githubPullRequestStateTest . ' is not recognized pull request state');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Tag/GithubTagId.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
      */
32 32
     public function __toString()
33 33
     {
34
-        return $this->githubRepoId->__toString().'-'.$this->tagName;
34
+        return $this->githubRepoId->__toString() . '-' . $this->tagName;
35 35
     }
36 36
 }
Please login to merge, or discard this patch.