Completed
Push — master ( 53780e...168ede )
by Emmanuel
02:11
created
src/GlLazyLoadImg.php 1 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.