Completed
Pull Request — master (#68)
by
unknown
02:42
created
src/QueryBuilder/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
         $this->validate();
134 134
         $this->visitQueryParts();
135 135
         $selects = implode(', ', array_map(
136
-            function (AbstractSelect $select): string {
136
+            function(AbstractSelect $select): string {
137 137
                 return $select->asSOQL();
138 138
             },
139 139
             $this->selects
Please login to merge, or discard this patch.
src/QueryBuilder/Expr/Select/Typeof.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,9 +36,11 @@
 block discarded – undo
36 36
         return $this;
37 37
     }
38 38
 
39
-    public function else(Fields $fields): self
39
+    public function else {
40
+        (Fields $fields): self
40 41
     {
41 42
         $this->elseClause = new ElseClause($fields);
43
+    }
42 44
 
43 45
         return $this;
44 46
     }
Please login to merge, or discard this patch.
src/Security/Authentication/Authenticator.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -56,6 +56,7 @@
 block discarded – undo
56 56
 
57 57
     /**
58 58
      * @throws Exception\InvalidAuthenticationResponseException
59
+     * @param \Psr\Http\Message\StreamInterface $rawResponse
59 60
      */
60 61
     private function parse($rawResponse): array
61 62
     {
Please login to merge, or discard this patch.