Passed
Push — master ( 12ac14...408b60 )
by David
03:10
created
tests/Form/TypeTestCase.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
         parent::setUp();
43 43
 
44 44
         $validator = $this->getMockBuilder(ValidatorInterface::class)
45
-                     ->disableOriginalConstructor()
46
-                     ->getMock();
45
+                        ->disableOriginalConstructor()
46
+                        ->getMock();
47 47
         $validator->method('validate')->willReturn(new ConstraintViolationList());
48 48
 
49 49
         $this->factory = Forms::createFormFactoryBuilder()
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
             )
54 54
             ->addTypeGuesser(
55 55
                 $this->getMockBuilder(ValidatorTypeGuesser::class)
56
-                     ->disableOriginalConstructor()
57
-                     ->getMock()
56
+                        ->disableOriginalConstructor()
57
+                        ->getMock()
58 58
             )
59 59
             ->getFormFactory();
60 60
 
Please login to merge, or discard this patch.