Completed
Push — master ( 89724e...2a69ba )
by Alexander
52:45 queued 12:46
created
src/components/drivers/Image_GD.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -350,8 +350,7 @@
 block discarded – undo
350 350
         $amount = round(abs(-18 + ($amount * 0.08)), 2);
351 351
 
352 352
         // Gaussian blur matrix
353
-        $matrix = array
354
-        (
353
+        $matrix = array(
355 354
             array(-1, -1, -1),
356 355
             array(-1, $amount, -1),
357 356
             array(-1, -1, -1),
Please login to merge, or discard this patch.
src/components/drivers/Image_Imagick.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
         $this->type = $type;
333 333
         $this->mime = image_type_to_mime_type($type);
334 334
 
335
-        return (string)$this->im;
335
+        return (string) $this->im;
336 336
     }
337 337
 
338 338
     /**
Please login to merge, or discard this patch.
src/components/Kohana/Image.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         }
41 41
 
42 42
         // Set the class name
43
-        $class = 'image\components\drivers\Image_' . $driver;
43
+        $class = 'image\components\drivers\Image_'.$driver;
44 44
 
45 45
         return new $class($file);
46 46
     }
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
     public function rotate($degrees)
314 314
     {
315 315
         // Make the degrees an integer
316
-        $degrees = (int)$degrees;
316
+        $degrees = (int) $degrees;
317 317
 
318 318
         if ($degrees > 180) {
319 319
             do {
Please login to merge, or discard this patch.