Passed
Push — master ( b294ad...5fcf8d )
by Smoren
02:26
created
src/Filters/BaseTraverseFilter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,12 +19,12 @@  discard block
 block discarded – undo
19 19
     {
20 20
         $passCondition = $this->_getPassCondition();
21 21
 
22
-        if(
22
+        if (
23 23
             $this->config->has(FilterConfig::PREVENT_LOOP_PASS)
24 24
             && $context->isLoop()
25 25
         ) {
26 26
             $passCondition = (clone $passCondition)->onlyVertexTypes([]);
27
-        } elseif(
27
+        } elseif (
28 28
             $this->config->has(FilterConfig::PREVENT_RETURN_BACK_PASS)
29 29
             && ($prevVertex = $context->getPrevVertex()) !== null
30 30
         ) {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $handleCondition = $this->_getHandleCondition();
44 44
         $globalPassed = $context->getGlobalPassedVertexesMap();
45 45
 
46
-        if(
46
+        if (
47 47
             (
48 48
                 $this->config->has(FilterConfig::PREVENT_LOOP_HANDLE)
49 49
                 && $context->isLoop()
Please login to merge, or discard this patch.