Completed
Push — master ( 24a963...13192d )
by Mihail
03:16
created
src/Ffcms/Core/Helper/HTML/Form/SelectField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $options = $this->properties['options'];
36 36
         unset($this->properties['options']);
37 37
         if (!Obj::isArray($options) || count($options) < 1) {
38
-            throw new SyntaxException('Select field ' . self::nohtml($this->name) . ' have no options passed');
38
+            throw new SyntaxException('Select field '.self::nohtml($this->name).' have no options passed');
39 39
         }
40 40
         // value is not used there
41 41
         unset($this->properties['value']);
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/HTML/Form/CaptchaField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             'id' => 'src-secure-image',
41 41
             'src' => $image,
42 42
             'alt' => 'secure captcha image',
43
-            'onClick' => 'this.src=\'' . $image . '&rnd=\'+Math.random()'
43
+            'onClick' => 'this.src=\''.$image.'&rnd=\'+Math.random()'
44 44
         ]);
45 45
         // render response tag with image
46 46
         $this->properties['type'] = 'text';
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/HTML/System/Dom.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -97,9 +97,9 @@  discard block
 block discarded – undo
97 97
     {
98 98
         // looks like a single tag, <img src="" class="" />, <hr class="" />
99 99
         if (Arr::in($name, self::$singleTags)) {
100
-            return '<' . $name . self::applyProperties($properties) . ' />';
101
-        } elseif(Arr::in($name, self::$containerTags)) { // looks like a container tag, <div class=""></div>
102
-            return '<' . $name . self::applyProperties($properties) . '>' . $content . '</' . $name . '>';
100
+            return '<'.$name.self::applyProperties($properties).' />';
101
+        } elseif (Arr::in($name, self::$containerTags)) { // looks like a container tag, <div class=""></div>
102
+            return '<'.$name.self::applyProperties($properties).'>'.$content.'</'.$name.'>';
103 103
         }
104 104
 
105 105
         // empty response
@@ -126,9 +126,9 @@  discard block
 block discarded – undo
126 126
             }
127 127
             // sounds like single standalone property, ex required, selected etc
128 128
             if ($value === null || $value === false) {
129
-                $build .= ' ' . htmlentities($property, ENT_QUOTES);
129
+                $build .= ' '.htmlentities($property, ENT_QUOTES);
130 130
             } else { // sounds like a classic key="value" property
131
-                $build .= ' ' . htmlentities($property, ENT_QUOTES) . '="' . htmlentities($value, ENT_QUOTES) . '"';
131
+                $build .= ' '.htmlentities($property, ENT_QUOTES).'="'.htmlentities($value, ENT_QUOTES).'"';
132 132
             }
133 133
         }
134 134
         return $build;
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/Type/Arr.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -118,16 +118,16 @@
 block discarded – undo
118 118
                         return 'true';
119 119
                     }
120 120
                 }
121
-                return '\'' . $var . '\'';
121
+                return '\''.$var.'\'';
122 122
             case 'array':
123 123
                 $indexed = array_keys($var) === range(0, count($var) - 1);
124 124
                 $row = [];
125 125
                 foreach ($var as $key => $value) {
126
-                    $row[] = $indent . "\t"
127
-                        . ($indexed ? null : self::exportVar($key, null, $guessTypes) . ' => ')
128
-                        . self::exportVar($value, $indent . "\t", $guessTypes);
126
+                    $row[] = $indent."\t"
127
+                        . ($indexed ? null : self::exportVar($key, null, $guessTypes).' => ')
128
+                        . self::exportVar($value, $indent."\t", $guessTypes);
129 129
                 }
130
-                return "[\n" . implode(",\n", $row) . "\n" . $indent . ']';
130
+                return "[\n".implode(",\n", $row)."\n".$indent.']';
131 131
             case 'boolean':
132 132
                 return $var ? 'true' : 'false';
133 133
             default:
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/Environment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,6 +67,6 @@
 block discarded – undo
67 67
             return 'error';
68 68
         }
69 69
 
70
-        return (int)$load . '%';
70
+        return (int)$load.'%';
71 71
     }
72 72
 }
73 73
\ No newline at end of file
Please login to merge, or discard this patch.
src/Ffcms/Core/I18n/Translate.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
         if (Obj::isArray($params) && count($params) > 0) {
54 54
             foreach ($params as $var => $value) {
55
-                $text = Str::replace('%' . $var . '%', $value, $text);
55
+                $text = Str::replace('%'.$var.'%', $value, $text);
56 56
             }
57 57
         }
58 58
         return $text;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     public function translate($text, array $params = [])
68 68
     {
69 69
         $index = null;
70
-        $namespace = 'Apps\\Controller\\' . env_name . '\\';
70
+        $namespace = 'Apps\\Controller\\'.env_name.'\\';
71 71
         foreach (debug_backtrace() as $caller) {
72 72
             if (isset($caller['class']) && Str::startsWith($namespace, $caller['class'])) {
73 73
                 $index = Str::sub((string)$caller['class'], Str::length($namespace));
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      */
84 84
     protected function load($index)
85 85
     {
86
-        $file = root . '/I18n/' . env_name . '/' . App::$Request->getLanguage() . '/' . $index . '.php';
86
+        $file = root.'/I18n/'.env_name.'/'.App::$Request->getLanguage().'/'.$index.'.php';
87 87
         if (!File::exist($file)) {
88 88
             return [];
89 89
         }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     public function getAvailableLangs()
122 122
     {
123 123
         $langs = ['en'];
124
-        $scan = Directory::scan(root . '/I18n/' . env_name . '/', GLOB_ONLYDIR, true);
124
+        $scan = Directory::scan(root.'/I18n/'.env_name.'/', GLOB_ONLYDIR, true);
125 125
         foreach ($scan as $row) {
126 126
             $langs[] = trim($row, '/');
127 127
         }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
 
116 116
     /**
117 117
      * Get available languages in the filesystem
118
-     * @return array
118
+     * @return string[]
119 119
      */
120 120
     public function getAvailableLangs()
121 121
     {
Please login to merge, or discard this patch.
src/Ffcms/Core/Arch/Controller.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
         if ($this->layout === null) {
50 50
             $content = $this->response;
51 51
         } else {
52
-            $layoutPath = App::$Alias->currentViewPath . '/layout/' . $this->layout . '.php';
52
+            $layoutPath = App::$Alias->currentViewPath.'/layout/'.$this->layout.'.php';
53 53
             if (!File::exist($layoutPath)) {
54
-                throw new NativeException('Layout not founded: ' . $layoutPath);
54
+                throw new NativeException('Layout not founded: '.$layoutPath);
55 55
             }
56 56
 
57 57
             $body = $this->response;
@@ -70,14 +70,14 @@  discard block
 block discarded – undo
70 70
             // set custom css library's not included on static call
71 71
             $cssIncludeCode = App::$View->showCodeLink('css');
72 72
             if (!Str::likeEmpty($cssIncludeCode)) {
73
-                $content = Str::replace('</head>', $cssIncludeCode . '</head>', $content);
73
+                $content = Str::replace('</head>', $cssIncludeCode.'</head>', $content);
74 74
             }
75 75
 
76 76
             // add debug bar
77 77
             if (App::$Debug !== null) {
78 78
                 $content = Str::replace(
79 79
                     ['</body>', '</head>'],
80
-                    [App::$Debug->renderOut() . '</body>', App::$Debug->renderHead() . '</head>'],
80
+                    [App::$Debug->renderOut().'</body>', App::$Debug->renderHead().'</head>'],
81 81
                     $content);
82 82
             }
83 83
 
Please login to merge, or discard this patch.
src/Ffcms/Core/Arch/Widget.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
         // check if class exist
28 28
         if (!class_exists(self::$class)) {
29
-            return 'Error: Widget is not founded: ' . App::$Security->strip_tags(self::$class);
29
+            return 'Error: Widget is not founded: '.App::$Security->strip_tags(self::$class);
30 30
         }
31 31
 
32 32
         // init class and pass properties
Please login to merge, or discard this patch.
src/Ffcms/Core/Network/Response.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
     {
23 23
         $to = trim($to, '/');
24 24
         if (false === $full && !Str::startsWith(App::$Alias->baseUrl, $to)) {
25
-            $to = App::$Alias->baseUrl . '/' . $to;
25
+            $to = App::$Alias->baseUrl.'/'.$to;
26 26
         }
27 27
         $redirect = new FoundationRedirect($to);
28 28
         $redirect->send();
29
-        exit('Redirecting to ' . $to . ' ...');
29
+        exit('Redirecting to '.$to.' ...');
30 30
     }
31 31
 }
32 32
\ No newline at end of file
Please login to merge, or discard this patch.