Passed
Push — main ( 60d4fa...8f59c9 )
by Giovanni A. L.
01:24
created
src/Repository/DataRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,6 +7,6 @@
 block discarded – undo
7 7
     public function find(
8 8
         string $namespace,
9 9
         string $terms,
10
-        array|string|null $params = null
10
+        array | string | null $params = null
11 11
     );
12 12
 }
Please login to merge, or discard this patch.
src/Repository/CoffeeCodeDataRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function find(
17 17
         string $namespace,
18 18
         string $terms,
19
-        array|string|null $params = null
19
+        array | string | null $params = null
20 20
     ): mixed {
21 21
         if (!class_exists($namespace)) {
22 22
             throw new \Exception("{$namespace} não é um modelo DataLayer válido");
Please login to merge, or discard this patch.
src/Validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      * @param  array|string  $ruleDefinitions
80 80
      * @return array
81 81
      */
82
-    private function parseRules(array|string $ruleDefinitions): array
82
+    private function parseRules(array | string $ruleDefinitions): array
83 83
     {
84 84
         return is_array($ruleDefinitions)
85 85
             ? $ruleDefinitions
Please login to merge, or discard this patch.