Completed
Push — master ( 05b722...3814de )
by dan
01:59
created
Tests/File/FileToObjectTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -45,21 +45,21 @@
 block discarded – undo
45 45
 
46 46
         // Mock the EntityManager to return the mock of the repository
47 47
         $entityManager = $this->getMockBuilder(EntityManager::class)
48
-                              ->disableOriginalConstructor()
49
-                              ->getMock();
48
+                                ->disableOriginalConstructor()
49
+                                ->getMock();
50 50
 
51 51
         $entityManager->expects($this->any())
52
-                      ->method('getRepository')
53
-                      ->will($this->returnValue($imageRepository));
52
+                        ->method('getRepository')
53
+                        ->will($this->returnValue($imageRepository));
54 54
 
55 55
         // The mock the ImageEntityName
56 56
         $nameResolver = $this->getMockBuilder(ImageEntityNameResolver::class)
57
-                             ->disableOriginalConstructor()
58
-                             ->getMock();
57
+                                ->disableOriginalConstructor()
58
+                                ->getMock();
59 59
 
60 60
         $nameResolver->expects($this->once())
61
-                     ->method('getClassName')
62
-                     ->will($this->returnValue('ResponsiveImage'));
61
+                        ->method('getClassName')
62
+                        ->will($this->returnValue('ResponsiveImage'));
63 63
 
64 64
         $fileToObject = new FileToObject($entityManager, $nameResolver);
65 65
 
Please login to merge, or discard this patch.
Tests/File/FilenameTransliteratorTest.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -20,29 +20,29 @@
 block discarded – undo
20 20
     {
21 21
         // Mock the repository so it returns the mock of the Image repository.
22 22
         $fileToObject = $this->getMockBuilder(FileToObject::class)
23
-                             ->disableOriginalConstructor()
24
-                             ->getMock();
23
+                                ->disableOriginalConstructor()
24
+                                ->getMock();
25 25
 
26 26
         $fileToObject->expects($this->any())
27
-                     ->method('getObjectFromFilename')
28
-                     ->will(
29
-                         $this->returnCallback(
30
-                             function ($filename) {
31
-                                 $existingFilenames = [
32
-                                     'test.jpg',
33
-                                     'test_1.jpg',
34
-                                 ];
35
-                                 if (in_array($filename, $existingFilenames)) {
36
-                                     $image = new TestImage();
37
-
38
-                                     return $image;
39
-                                 }
40
-                                 else {
41
-                                     return null;
42
-                                 }
43
-                             }
44
-                         )
45
-                     );
27
+                        ->method('getObjectFromFilename')
28
+                        ->will(
29
+                            $this->returnCallback(
30
+                                function ($filename) {
31
+                                    $existingFilenames = [
32
+                                        'test.jpg',
33
+                                        'test_1.jpg',
34
+                                    ];
35
+                                    if (in_array($filename, $existingFilenames)) {
36
+                                        $image = new TestImage();
37
+
38
+                                        return $image;
39
+                                    }
40
+                                    else {
41
+                                        return null;
42
+                                    }
43
+                                }
44
+                            )
45
+                        );
46 46
 
47 47
         $transliterator = new FilenameTransliterator($fileToObject);
48 48
 
Please login to merge, or discard this patch.
Validator/Constraints/CropFocusCoordinatesValidator.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@
 block discarded – undo
53 53
 
54 54
         if (!$valid) {
55 55
             $this->context->buildViolation($constraint->message)
56
-                          ->setParameter('{{ string }}', $value)
57
-                          ->addViolation()
56
+                            ->setParameter('{{ string }}', $value)
57
+                            ->addViolation()
58 58
             ;
59 59
         }
60 60
     }
Please login to merge, or discard this patch.
File/FileValidator.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
         $guessedFileExtension = strtolower($file->guessExtension());
40 40
 
41 41
         if (!in_array($guessedFileExtension, $this->allowedTypes)) {
42
-          $this->errors[] = 'Files of "' . $guessedFileExtension . '" type are not allowed';
42
+            $this->errors[] = 'Files of "' . $guessedFileExtension . '" type are not allowed';
43 43
 
44
-          return false;
44
+            return false;
45 45
         }
46 46
 
47 47
         if (!in_array($fileExtension, $this->allowedTypes)) {
Please login to merge, or discard this patch.
Tests/File/FileValidatorTest.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -27,15 +27,15 @@  discard block
 block discarded – undo
27 27
     {
28 28
         $uploadedFile = $this->getMockFileUpload();
29 29
         $uploadedFile->expects($this->once())
30
-                     ->method('getClientOriginalExtension')
31
-                     ->will(
32
-                         $this->returnValue('jpg')
33
-                     );
30
+                        ->method('getClientOriginalExtension')
31
+                        ->will(
32
+                            $this->returnValue('jpg')
33
+                        );
34 34
         $uploadedFile->expects($this->once())
35
-                     ->method('guessExtension')
36
-                     ->will(
37
-                         $this->returnValue('jpg')
38
-                     );
35
+                        ->method('guessExtension')
36
+                        ->will(
37
+                            $this->returnValue('jpg')
38
+                        );
39 39
 
40 40
         // Test the validator.
41 41
         $validator = new FileValidator();
@@ -49,15 +49,15 @@  discard block
 block discarded – undo
49 49
     {
50 50
         $uploadedFile = $this->getMockFileUpload();
51 51
         $uploadedFile->expects($this->once())
52
-                     ->method('getClientOriginalExtension')
53
-                     ->will(
54
-                         $this->returnValue('doc')
55
-                     );
52
+                        ->method('getClientOriginalExtension')
53
+                        ->will(
54
+                            $this->returnValue('doc')
55
+                        );
56 56
         $uploadedFile->expects($this->once())
57
-                     ->method('guessExtension')
58
-                     ->will(
59
-                         $this->returnValue('doc')
60
-                     );
57
+                        ->method('guessExtension')
58
+                        ->will(
59
+                            $this->returnValue('doc')
60
+                        );
61 61
 
62 62
         // Test the validator.
63 63
         $validator = new FileValidator();
Please login to merge, or discard this patch.