@@ -54,11 +54,11 @@ |
||
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 |