Completed
Push — master ( fddd01...f74e72 )
by BENOIT
01:33
created
src/Contract/StatementInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      *
31 31
      * @return array
32 32
      */
33
-    public function getValues(): ?array;
33
+    public function getValues(): ? array;
34 34
 
35 35
     /**
36 36
      * Return a cloned statement object with different values.
Please login to merge, or discard this patch.
src/Contract/ResultInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      *
20 20
      * @return array|null
21 21
      */
22
-    public function asRow(): ?array;
22
+    public function asRow(): ? array;
23 23
 
24 24
     /**
25 25
      * Return an indexed array of items.
Please login to merge, or discard this patch.
src/Contract/CredentialsInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@
 block discarded – undo
17 17
     /**
18 18
      * @return string
19 19
      */
20
-    public function getPassword(): ?string;
20
+    public function getPassword(): ? string;
21 21
 
22 22
     /**
23 23
      * @return string
24 24
      */
25
-    public function getDatabase(): ?string;
25
+    public function getDatabase(): ? string;
26 26
 
27 27
     /**
28 28
      * @return string
Please login to merge, or discard this patch.