@@ -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 Puzzle\ValueObjects; |
| 6 | 6 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | new \Symfony\Component\Validator\Constraints\Uuid() |
| 50 | 50 | ); |
| 51 | 51 | |
| 52 | - if (count($errors) > 0 || $string === '') |
|
| 52 | + if(count($errors) > 0 || $string === '') |
|
| 53 | 53 | { |
| 54 | 54 | throw new Exceptions\InvalidUuid($string); |
| 55 | 55 | } |