Passed
Push — master ( 45960c...20d4cd )
by Glegrith
01:58
created
config/hashing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,5 +3,5 @@
 block discarded – undo
3 3
 return [
4 4
     'default' => 'bcrypt',
5 5
 
6
-    'bcrypt' => []
6
+    'bcrypt' => [ ]
7 7
 ];
Please login to merge, or discard this patch.
bootstrap/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
 
21 21
 include("helper.php");
22 22
 
23
-if(isDebug()) {
23
+if (isDebug()) {
24 24
     set_exception_handler("handle");
25 25
 }
Please login to merge, or discard this patch.
app/framework/Component/Config/Config.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  */
19 19
 class Config
20 20
 {
21
-    use StdLibTrait,SingletonTrait;
21
+    use StdLibTrait, SingletonTrait;
22 22
 
23 23
     private $data;
24 24
 
@@ -26,14 +26,14 @@  discard block
 block discarded – undo
26 26
     {
27 27
         $this->getAllData();
28 28
         //var_dump($this->data->val());
29
-        if(!$this->isNull($file)){
29
+        if (!$this->isNull($file)) {
30 30
             $file = $this->arr($this->data->key($file));
31 31
 
32 32
             return $file->key($config);
33 33
         } else {
34
-            foreach($this->data->val() as $confCont){
34
+            foreach ($this->data->val() as $confCont) {
35 35
                 $confCont = $this->arr($confCont);
36
-                if($confCont->keyExists($config)){
36
+                if ($confCont->keyExists($config)) {
37 37
                     return $confCont->key($config);
38 38
                 }
39 39
             }
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
         $files = $this->arr(scandir(ROOT_PATH.DIRECTORY_SEPARATOR."config".DIRECTORY_SEPARATOR));
48 48
         $files->removeFirst()->removeFirst();
49 49
 
50
-        foreach($files->val() as $file){
51
-            $temp[explode(".", $file)[0]] = include(
50
+        foreach ($files->val() as $file) {
51
+            $temp[ explode(".", $file)[ 0 ] ] = include(
52 52
                 ROOT_PATH.DIRECTORY_SEPARATOR."config".DIRECTORY_SEPARATOR.$file
53 53
             );
54 54
         }
Please login to merge, or discard this patch.
app/framework/Component/Validation/ValidatorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,5 +33,5 @@
 block discarded – undo
33 33
      * @return boolean|string
34 34
      * @throws ValidationException
35 35
      */
36
-    public function validate($value, $params = [], $throw = true);
36
+    public function validate($value, $params = [ ], $throw = true);
37 37
 }
Please login to merge, or discard this patch.
app/framework/Component/Validation/Validation.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 {
37 37
     use SingletonTrait;
38 38
 
39
-    private $validators = [];
39
+    private $validators = [ ];
40 40
 
41 41
     /**
42 42
     * @param mixed        $data
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
                 $throw
58 58
             ];
59 59
 
60
-            if (!array_key_exists($validator[0], $this->validators)) {
61
-                handle(new ValidationException('Validator %s does not exist!', $validator[0]));
60
+            if (!array_key_exists($validator[ 0 ], $this->validators)) {
61
+                handle(new ValidationException('Validator %s does not exist!', $validator[ 0 ]));
62 62
             }
63
-            $res = $this->validators[$validator[0]]->validate(...$functionParams);
63
+            $res = $this->validators[ $validator[ 0 ] ]->validate(...$functionParams);
64 64
 
65 65
             // If validation failed and we are not throwing, return error message string
66 66
             if ($res !== true && !$throw) {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function addValidator(ValidatorInterface $validator)
82 82
     {
83
-        $this->validators[$validator->getName()] = $validator;
83
+        $this->validators[ $validator->getName() ] = $validator;
84 84
 
85 85
         return $this;
86 86
     }
@@ -108,8 +108,8 @@  discard block
 block discarded – undo
108 108
         ];
109 109
 
110 110
         /* @var $v ValidatorInterface */
111
-        foreach($buildInValidators as $v){
112
-            $this->validators[$v->getName()] = $v;
111
+        foreach ($buildInValidators as $v) {
112
+            $this->validators[ $v->getName() ] = $v;
113 113
         }
114 114
     }
115 115
 
@@ -123,6 +123,6 @@  discard block
 block discarded – undo
123 123
             return explode(',', $validators);
124 124
         }
125 125
 
126
-        return [];
126
+        return [ ];
127 127
     }
128 128
 }
Please login to merge, or discard this patch.
app/framework/Component/Validation/Validators/IP.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      *
33 33
      * @return boolean|string
34 34
      */
35
-    public function validate($value, $params = [], $throw = true)
35
+    public function validate($value, $params = [ ], $throw = true)
36 36
     {
37 37
         if (filter_var($value, FILTER_VALIDATE_IP)) {
38 38
             return true;
Please login to merge, or discard this patch.
app/framework/Component/Validation/Validators/MacAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      *
33 33
      * @return boolean|string
34 34
      */
35
-    public function validate($value, $params = [], $throw = true)
35
+    public function validate($value, $params = [ ], $throw = true)
36 36
     {
37 37
         if (filter_var($value, FILTER_VALIDATE_MAC)) {
38 38
             return true;
Please login to merge, or discard this patch.
app/framework/Component/Validation/Validators/MinLength.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,17 +32,17 @@
 block discarded – undo
32 32
      *
33 33
      * @return boolean|string
34 34
      */
35
-    public function validate($value, $params = [], $throw = true)
35
+    public function validate($value, $params = [ ], $throw = true)
36 36
     {
37
-        $limit = $params[0];
37
+        $limit = $params[ 0 ];
38 38
         $length = is_string($value) ? strlen($value) : count($value);
39 39
 
40
-        if($length >= $limit){
40
+        if ($length >= $limit) {
41 41
             return true;
42 42
         }
43 43
 
44 44
         $message = "Value must be contain %s character at least";
45
-        if($throw){
45
+        if ($throw) {
46 46
             throw (new ValidationException($message, $limit));
47 47
         }
48 48
 
Please login to merge, or discard this patch.
app/framework/Component/Validation/Validators/GreaterThanOrEqual.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,15 +32,15 @@
 block discarded – undo
32 32
      *
33 33
      * @return boolean|string
34 34
      */
35
-    public function validate($value, $params = [], $throw = true)
35
+    public function validate($value, $params = [ ], $throw = true)
36 36
     {
37
-        $cmp = $params[0];
38
-        if($value >= $cmp){
37
+        $cmp = $params[ 0 ];
38
+        if ($value >= $cmp) {
39 39
             return true;
40 40
         }
41 41
 
42 42
         $message = "Value must be greater than or equal %s";
43
-        if($throw){
43
+        if ($throw) {
44 44
             throw (new ValidationException($message, $cmp));
45 45
         }
46 46
 
Please login to merge, or discard this patch.