Completed
Branch master (f666f7)
by Paweł
02:50
created
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.
src/QueryBuilder/Visitor/VisiteeInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -4,7 +4,13 @@
 block discarded – undo
4 4
 
5 5
 interface VisiteeInterface
6 6
 {
7
+    /**
8
+     * @return void
9
+     */
7 10
     public function accept(VisitorInterface $visitor);
8 11
 
12
+    /**
13
+     * @return void
14
+     */
9 15
     public function update(array $values);
10 16
 }
Please login to merge, or discard this patch.
src/QueryBuilder/Visitor/VisitorInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -7,7 +7,13 @@
 block discarded – undo
7 7
 
8 8
 interface VisitorInterface
9 9
 {
10
+    /**
11
+     * @return void
12
+     */
10 13
     public function visitSingleCompare(AbstractSingleCompare $compare);
11 14
 
15
+    /**
16
+     * @return void
17
+     */
12 18
     public function visitMultiCompare(AbstractMultiCompare $multiCompare);
13 19
 }
Please login to merge, or discard this patch.
src/Repository/SObjectRepositoryInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -6,10 +6,19 @@
 block discarded – undo
6 6
 
7 7
 interface SObjectRepositoryInterface
8 8
 {
9
+    /**
10
+     * @return void
11
+     */
9 12
     public function create(AbstractSObject $object);
10 13
 
14
+    /**
15
+     * @return void
16
+     */
11 17
     public function update(AbstractSObject $object);
12 18
 
19
+    /**
20
+     * @return void
21
+     */
13 22
     public function delete(AbstractSObject $object);
14 23
 
15 24
     public function find(string $class, string $id): AbstractSObject;
Please login to merge, or discard this patch.
src/Storage/TokenStorageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -18,6 +18,7 @@
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * @param TokenInterface $token
21
+     * @return void
21 22
      */
22 23
     public function save(TokenInterface $token);
23 24
 }
Please login to merge, or discard this patch.