Passed
Push — dbal ( af27f8...c6a380 )
by Greg
11:18 queued 05:12
created
resources/lang/en-US/messages.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 declare(strict_types=1);
4 4
 
5
-return array (
5
+return array(
6 6
   '%H:%i:%s' => '%g:%i:%s %a',
7 7
   '%j %F %Y' => '%F %j, %Y',
8 8
   'Asunción, Paraguay' => 'Asuncion, Paraguay',
Please login to merge, or discard this patch.
app/Arr.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      *
75 75
      * @return TValue|null
76 76
      */
77
-    public function first(Closure|null $closure = null): mixed
77
+    public function first(Closure | null $closure = null): mixed
78 78
     {
79 79
         foreach ($this->getArrayCopy() as $value) {
80 80
             if ($closure === null || $closure($value)) {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      *
91 91
      * @return TValue|null
92 92
      */
93
-    public function last(Closure|null $closure = null): mixed
93
+    public function last(Closure | null $closure = null): mixed
94 94
     {
95 95
         return $this->reverse()->first(closure: $closure);
96 96
     }
Please login to merge, or discard this patch.