Completed
Push — master ( cba614...f7e6da )
by Pol
07:09
created
src/Iterators/FiniteGroup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
   public function order($generator) {
154 154
     $result = array();
155 155
 
156
-    foreach(range(1, $this->getSize() - 1) as $number) {
156
+    foreach (range(1, $this->getSize() - 1) as $number) {
157 157
       $value = pow($generator, $number) % $this->getSize();
158 158
       $result[$value] = $value;
159 159
     }
Please login to merge, or discard this patch.