Passed
Push — master ( e6d778...0e94ce )
by Smoren
01:53
created
src/Conditions/Traits/EdgeConditionTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,11 +54,11 @@
 block discarded – undo
54 54
      */
55 55
     public function isSuitableEdge(EdgeInterface $edge): bool
56 56
     {
57
-        if($this->edgeTypesOnly !== null && !in_array($edge->getType(), $this->edgeTypesOnly)) {
57
+        if ($this->edgeTypesOnly !== null && !in_array($edge->getType(), $this->edgeTypesOnly)) {
58 58
             return false;
59 59
         }
60 60
 
61
-        if(in_array($edge->getType(), $this->edgeTypesExclude)) {
61
+        if (in_array($edge->getType(), $this->edgeTypesExclude)) {
62 62
             return false;
63 63
         }
64 64
 
Please login to merge, or discard this patch.