Completed
Push — master ( 0da9b5...3760a5 )
by Alexander
04:00
created
src/RandomArray.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -36,15 +36,15 @@
 block discarded – undo
36 36
      */
37 37
     public $lim_elements = 10000;
38 38
     
39
-     /**
40
-     * Model number for generation random Keys for Arrays
41
-     * if 0 then array keys will be simple 1,2,3... numeric
42
-     * if 1 then array keys will be numeric from min_arr_key to max_arr_key
43
-     * if 2 then array keys will be string len from min_arr_key to max_arr_key
44
-     * This value setting by function setKeysModel()
45
-     *
46
-     * @var integer
47
-     */
39
+        /**
40
+         * Model number for generation random Keys for Arrays
41
+         * if 0 then array keys will be simple 1,2,3... numeric
42
+         * if 1 then array keys will be numeric from min_arr_key to max_arr_key
43
+         * if 2 then array keys will be string len from min_arr_key to max_arr_key
44
+         * This value setting by function setKeysModel()
45
+         *
46
+         * @var integer
47
+         */
48 48
     protected $keys_model;
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/RandomStr.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -73,9 +73,9 @@
 block discarded – undo
73 73
             '\mcrypt_create_iv', // need MCRypt
74 74
         ] as $fn) {
75 75
             if (function_exists($fn)) {
76
-               $this->rnd_fn = $fn;
77
-               break;
78
-           }   
76
+                $this->rnd_fn = $fn;
77
+                break;
78
+            }   
79 79
         }
80 80
         $this->setChars($init_charset, $utf8mode);
81 81
     }
Please login to merge, or discard this patch.