Completed
Push — master ( 0318a4...4ae196 )
by Pol
02:45
created
src/Iterators/Prime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
    */
51 51
   public function next() {
52 52
     ++$this->key;
53
-    for($i = $this->key; $i < $this->getMaxLimit(); $i++) {
53
+    for ($i = $this->key; $i < $this->getMaxLimit(); $i++) {
54 54
       if ($this->isPrimeNumber($i)) {
55 55
         $this->key = $i;
56 56
         $this->current = $i;
Please login to merge, or discard this patch.