@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Artack\Color; |
6 | 6 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | private function findVertex(string $key): Vertex |
53 | 53 | { |
54 | - $vertices = array_filter($this->converterGraph->getVertices()->getVector(), function (Vertex $vertex) use ($key) { |
|
54 | + $vertices = array_filter($this->converterGraph->getVertices()->getVector(), function(Vertex $vertex) use ($key) { |
|
55 | 55 | return $vertex->getId() === $key; |
56 | 56 | }); |
57 | 57 |