Passed
Push — master ( 294317...0d3182 )
by Anthony
53s queued 12s
created
src/AbstractFilterableRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,11 +18,11 @@
 block discarded – undo
18 18
      */
19 19
     public function addFilter(string $filter): self
20 20
     {
21
-        if (! class_exists($filter)) {
21
+        if (!class_exists($filter)) {
22 22
             throw new FilterClassNotFound();
23 23
         }
24 24
 
25
-        if (! is_subclass_of($filter, AbstractFilter::class)) {
25
+        if (!is_subclass_of($filter, AbstractFilter::class)) {
26 26
             throw new IncorrectFilterException($filter);
27 27
         }
28 28
 
Please login to merge, or discard this patch.