Completed
Push — master ( 53780e...168ede )
by Emmanuel
02:11
created
src/GlLazyLoadImg.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 
71 71
     
72 72
     private function gcd($a,$b) {
73
-         return ($a % $b) ? $this->gcd($b,$a % $b) : $b;
73
+            return ($a % $b) ? $this->gcd($b,$a % $b) : $b;
74 74
     }
75 75
     
76 76
     /**
Please login to merge, or discard this patch.
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -69,6 +69,10 @@
 block discarded – undo
69 69
     }
70 70
 
71 71
     
72
+    /**
73
+     * @param integer $a
74
+     * @param integer $b
75
+     */
72 76
     private function gcd($a,$b) {
73 77
          return ($a % $b) ? $this->gcd($b,$a % $b) : $b;
74 78
     }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
     }
70 70
 
71 71
     
72
-    private function gcd($a,$b) {
73
-         return ($a % $b) ? $this->gcd($b,$a % $b) : $b;
72
+    private function gcd($a, $b) {
73
+         return ($a % $b) ? $this->gcd($b, $a % $b) : $b;
74 74
     }
75 75
     
76 76
     /**
Please login to merge, or discard this patch.