Passed
Push — master ( 7d5600...3f0926 )
by Rob
01:54
created
src/Service/ImageResizerService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         $this->setLogger($logger);
31 31
         $this->getLogger()->info('Constucting ImageResizerService');
32 32
 
33
-        if (!$adapter instanceof ImageResizerInterface) {
33
+        if ( ! $adapter instanceof ImageResizerInterface) {
34 34
             throw new InvalidArgumentException(
35 35
                 sprintf('Adapter configured does not have the %s interface.', ImageResizerInterface::class)
36 36
             );
Please login to merge, or discard this patch.
src/Model/Image.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     public function __construct(string $path, int $targetWidth, int $targetHeight, string $cropMode = self::CENTERED_CROP, int $x = 0, int $y = 0)
99 99
     {
100 100
         // Check if given path exists
101
-        if (!file_exists($path)) {
101
+        if ( ! file_exists($path)) {
102 102
             throw new InvalidArgumentException(sprintf('The provided file(%s) does not exist.', $path));
103 103
         }
104 104
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         int $cropPositionY = 0
172 172
     ): Image {
173 173
         // Check if we've recieved a valid crop modus
174
-        if (!in_array($cropMode, self::CROP_MODUS)) {
174
+        if ( ! in_array($cropMode, self::CROP_MODUS)) {
175 175
             throw new InvalidArgumentException(
176 176
                 sprintf(
177 177
                     'Crop mode \'%s\' is not a valid mode. Choose one of the following %s',
Please login to merge, or discard this patch.