@@ -12,7 +12,7 @@ |
||
| 12 | 12 | public function __call(string $name, array $arguments) |
| 13 | 13 | { |
| 14 | 14 | if (false === str_starts_with($name, 'is')) { |
| 15 | - return ; |
|
| 15 | + return; |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | $property = lcfirst(substr($name, 2)); |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | $draw = new DrawBoxAroundObjects($this->objectLocalizer, $this->image); |
| 31 | 31 | $draw->boxColor($this->boxColor); |
| 32 | 32 | |
| 33 | - $draw->callback(function (Image $image, LocalizedObjectData $obj) { |
|
| 33 | + $draw->callback(function(Image $image, LocalizedObjectData $obj) { |
|
| 34 | 34 | $width = $image->getWidth(); |
| 35 | 35 | $height = $image->getHeight(); |
| 36 | 36 | |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | mid: $obj->getMid(), |
| 59 | 59 | languageCode: $obj->getLanguageCode(), |
| 60 | 60 | score: $obj->getScore(), |
| 61 | - normalizedVertices: array_map(function (NormalizedVertex $vertex) { |
|
| 61 | + normalizedVertices: array_map(function(NormalizedVertex $vertex) { |
|
| 62 | 62 | return new NormalizedVertexData( |
| 63 | 63 | x: $vertex->getX(), |
| 64 | 64 | y: $vertex->getY() |