Completed
Push — develop ( 042690...c2d572 )
by Neomerx
03:18 queued 01:48
created
src/Contracts/Errors/ErrorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,5 +39,5 @@
 block discarded – undo
39 39
     /**
40 40
      * @return array|null
41 41
      */
42
-    public function getMessageContext(): ?array;
42
+    public function getMessageContext(): ? array;
43 43
 }
Please login to merge, or discard this patch.
src/Rules/Generic/Filter.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,8 +105,7 @@
 block discarded – undo
105 105
         $output = filter_var($value, $filterId, $filterOptions);
106 106
 
107 107
         return $output !== false ?
108
-            BlockReplies::createSuccessReply($output) :
109
-            BlockReplies::createErrorReply($context, $value, $errorCode, [$filterId, $filterOptions]);
108
+            BlockReplies::createSuccessReply($output) : BlockReplies::createErrorReply($context, $value, $errorCode, [$filterId, $filterOptions]);
110 109
     }
111 110
 
112 111
     /**
Please login to merge, or discard this patch.