Passed
Push — master ( 2e8970...f9ceef )
by Smoren
02:00
created
src/Filters/ConstTraverseFilter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
     {
53 53
         $passCondition = $this->passCondition;
54 54
 
55
-        if(
55
+        if (
56 56
             $this->config->has(FilterConfig::PREVENT_LOOP_PASS)
57 57
             && $context->isLoop()
58 58
         ) {
59 59
             $passCondition = (clone $this->passCondition)->onlyVertexTypes([]);
60
-        } elseif(
60
+        } elseif (
61 61
             $this->config->has(FilterConfig::PREVENT_RETURN_BACK)
62 62
             && ($prevVertex = $context->getPrevVertex()) !== null
63 63
         ) {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         $handleCondition = $this->handleCondition;
77 77
         $globalPassed = $context->getGlobalPassedVertexesMap();
78 78
 
79
-        if(
79
+        if (
80 80
             (
81 81
                 $this->config->has(FilterConfig::PREVENT_LOOP_HANDLE)
82 82
                 && $context->isLoop()
Please login to merge, or discard this patch.