Completed
Push — master ( 05b722...3814de )
by dan
01:59
created
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.
Tests/ImageProcessing/FocusCropDataCalculatorTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,8 @@
 block discarded – undo
61 61
                 $message = 'Too wide: ' . $focusCropData['width'] . '<=' . $width;
62 62
                 $this->assertTrue($focusCropData['width'] <= $width, $message);
63 63
 
64
-                $message = 'Too high: ' . (int)round($focusCropData['height']) . ' <= ' . $height;
65
-                $this->assertTrue((int)round($focusCropData['height']) <= (int)$height, $message);
64
+                $message = 'Too high: ' . (int) round($focusCropData['height']) . ' <= ' . $height;
65
+                $this->assertTrue((int) round($focusCropData['height']) <= (int) $height, $message);
66 66
 
67 67
                 $this->assertTrue($focusCropData['x'] >= $imageCoordinates['crop_coordinates'][0]); // x1
68 68
                 $this->assertTrue($focusCropData['y'] >= $imageCoordinates['crop_coordinates'][1]); // y1
Please login to merge, or discard this patch.