Passed
Push — master ( dafac1...9ad278 )
by Dispositif
08:36
created
src/Infrastructure/DbAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
181 181
         return !empty($result);
182 182
     }
183 183
 
184
-    public function setLabel(string $title, ?int $val=0): bool
184
+    public function setLabel(string $title, ?int $val = 0): bool
185 185
     {
186 186
         try {
187 187
             $result = $this->db->update(
Please login to merge, or discard this patch.
src/Infrastructure/CirrusSearch.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @param string|null $url
33 33
      * @param array|null  $options
34 34
      */
35
-    public function __construct(?string $url = null, ?array $options=[])
35
+    public function __construct(?string $url = null, ?array $options = [])
36 36
     {
37 37
         $this->url = $url;
38 38
         $this->options = $options;
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             $titles[] = trim($res['title']);
88 88
         }
89 89
 
90
-        if(isset($this->options['reverse']) && $this->options['reverse'] === true ) {
90
+        if (isset($this->options['reverse']) && $this->options['reverse'] === true) {
91 91
             krsort($titles);
92 92
         }
93 93
 
Please login to merge, or discard this patch.