Passed
Pull Request — master (#1)
by Valentin
05:47
created
src/ValueObjects/SelfValidatedUuid.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.