Completed
Push — 1.x ( d6bf75...48bc17 )
by Sullivan
05:49
created
src/Constraints/SsnValidator.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,9 +18,10 @@
 block discarded – undo
18 18
     {
19 19
         parent::validate($value, $constraint);
20 20
 
21
-        if (class_implements())
22
-        // Have to instantiate it. See: https://github.com/ronanguilloux/IsoCodes/issues/12
21
+        if (class_implements()) {
22
+                // Have to instantiate it. See: https://github.com/ronanguilloux/IsoCodes/issues/12
23 23
         $ssn = new IsoCodes\Ssn();
24
+        }
24 25
         var_dump($ssn);
25 26
 
26 27
         if ($value && !$ssn->validate($value)) {
Please login to merge, or discard this patch.