Completed
Push — master ( e7fe07...245837 )
by Mihail
04:05
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::isIterable($options)) {
38
-            throw new SyntaxException('Select field ' . self::nohtml($this->name) . ' have no iterable options');
38
+            throw new SyntaxException('Select field '.self::nohtml($this->name).' have no iterable options');
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/Arch/Widget.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
         // check if class exist
27 27
         if (!class_exists(self::$class)) {
28
-            return 'Error: Widget is not founded: ' . self::$class;
28
+            return 'Error: Widget is not founded: '.self::$class;
29 29
         }
30 30
 
31 31
         // init class and pass properties
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/FileSystem/File.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@
 block discarded – undo
210 210
     /**
211 211
      * Get file md5 hash
212 212
      * @param string $path
213
-     * @return bool|string
213
+     * @return false|string
214 214
      */
215 215
     public static function getMd5($path)
216 216
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -192,15 +192,15 @@
 block discarded – undo
192 192
             return [];
193 193
         }
194 194
 
195
-        $dir = opendir($path . '/.');
195
+        $dir = opendir($path.'/.');
196 196
         while ($item = readdir($dir)) {
197
-            if (is_file($sub = $path . '/' . $item)) {
197
+            if (is_file($sub = $path.'/'.$item)) {
198 198
                 $item_ext = Str::lastIn($item, '.');
199 199
                 if ($ext === null || Arr::in($item_ext, $ext)) {
200 200
                     if ($returnRelative) {
201 201
                         $files[] = $item;
202 202
                     } else {
203
-                        $files[] = $path . DIRECTORY_SEPARATOR . $item;
203
+                        $files[] = $path.DIRECTORY_SEPARATOR.$item;
204 204
                     }
205 205
                 }
206 206
             } else {
Please login to merge, or discard this patch.
src/Ffcms/Core/Traits/ModelValidator.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
                     } elseif (method_exists($class, $obj)) { // maybe its a function?
139 139
                         $class = $class::$obj; // call function
140 140
                     } else {
141
-                        throw new SyntaxException('Filter callback execution failed: ' . $filterName);
141
+                        throw new SyntaxException('Filter callback execution failed: '.$filterName);
142 142
                     }
143 143
 
144 144
                 }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
             if (method_exists($class, $method)) {
149 149
                 $check = @$class::$method($fieldValue, $filterArgs);
150 150
             } else {
151
-                throw new SyntaxException('Filter callback execution failed: ' . $filterName);
151
+                throw new SyntaxException('Filter callback execution failed: '.$filterName);
152 152
             }
153 153
         } elseif (method_exists('Ffcms\Core\Helper\ModelFilters', $filterName)) { // only full namespace\class path based :(
154 154
             if ($filterArgs != null) {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                 $check = ModelFilters::$filterName($fieldValue);
158 158
             }
159 159
         } else {
160
-            throw new SyntaxException('Filter "' . $filterName . '" is not exist');
160
+            throw new SyntaxException('Filter "'.$filterName.'" is not exist');
161 161
         }
162 162
         if ($check !== true) { // switch only on fail check.
163 163
             $this->_badAttr[] = $propertyName;
@@ -323,10 +323,10 @@  discard block
 block discarded – undo
323 323
         $paramQuery = $this->getFormName();
324 324
         if (Str::contains('.', $param)) {
325 325
             foreach (explode('.', $param) as $item) {
326
-                $paramQuery .= '[' . $item . ']';
326
+                $paramQuery .= '['.$item.']';
327 327
             }
328 328
         } else {
329
-            $paramQuery .= '[' . $param . ']';
329
+            $paramQuery .= '['.$param.']';
330 330
         }
331 331
 
332 332
         if ($method === null) {
Please login to merge, or discard this patch.
src/Ffcms/Core/Managers/MigrationsManager.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                 continue;
73 73
             }
74 74
             // check initialize conditions (equals to $exist)
75
-            if (File::exist($this->dir . '/' . $migration)) {
75
+            if (File::exist($this->dir.'/'.$migration)) {
76 76
                 if (Arr::in($fullName, $dbmigrations) === $exist) {
77 77
                     $found[] = $migration;
78 78
                 }
@@ -102,17 +102,17 @@  discard block
 block discarded – undo
102 102
         }
103 103
 
104 104
         // check if migration file is exists
105
-        if (!File::exist($this->dir . '/' . $file)) {
105
+        if (!File::exist($this->dir.'/'.$file)) {
106 106
             return false;
107 107
         }
108 108
 
109 109
         // check if migration file located in extend directory and copy to default
110 110
         if (Normalize::diskFullPath($this->dir) !== Normalize::diskFullPath(static::DEFAULT_DIR)) {
111
-            File::copy($this->dir . DIRECTORY_SEPARATOR . $file, static::DEFAULT_DIR . DIRECTORY_SEPARATOR . $file);
111
+            File::copy($this->dir.DIRECTORY_SEPARATOR.$file, static::DEFAULT_DIR.DIRECTORY_SEPARATOR.$file);
112 112
         }
113 113
 
114 114
         // include migration and get class name
115
-        File::inc($this->dir . '/' . $file, false, false);
115
+        File::inc($this->dir.'/'.$file, false, false);
116 116
         $fullName = Str::cleanExtension($file);
117 117
         $class = Str::firstIn($fullName, '-');
118 118
 
@@ -148,11 +148,11 @@  discard block
 block discarded – undo
148 148
         }
149 149
 
150 150
         // check if exists
151
-        if (!File::exist($this->dir . '/' . $file)) {
151
+        if (!File::exist($this->dir.'/'.$file)) {
152 152
             return false;
153 153
         }
154 154
 
155
-        File::inc($this->dir . '/' . $file, false, false);
155
+        File::inc($this->dir.'/'.$file, false, false);
156 156
         $fullName = Str::cleanExtension($file);
157 157
         $class = Str::firstIn($fullName, '-');
158 158
 
Please login to merge, or discard this patch.
src/Ffcms/Core/Arch/ActiveModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
     /**
92 92
      * Serialize value
93 93
      * @param $value
94
-     * @return Serialize
94
+     * @return string
95 95
      */
96 96
     public function asSerialize($value)
97 97
     {
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/HTML/Bootstrap/Navbar.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         // set mobile collapse id for toggle
38 38
         $mobCollapseId = $elements['collapseId'];
39 39
         if (Str::likeEmpty($mobCollapseId)) {
40
-            $mobCollapseId = Str::randomLatin(mt_rand(6,12)) . mt_rand(1, 99);
40
+            $mobCollapseId = Str::randomLatin(mt_rand(6, 12)).mt_rand(1, 99);
41 41
         }
42 42
 
43 43
         // set element id for toggle
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         // generate output dom of bootstrap navbar
100 100
         $dom = new Dom();
101 101
         $body = $dom->div(function() use ($leftBuild, $rightBuild, $itemsStatic){
102
-            return $leftBuild . $itemsStatic . $rightBuild;
102
+            return $leftBuild.$itemsStatic.$rightBuild;
103 103
         }, ['class' => 'collapse navbar-collapse', 'id' => $mobCollapseId]);
104 104
 
105 105
         // drow <nav @properties>@next</nav>
@@ -110,17 +110,17 @@  discard block
 block discarded – undo
110 110
                 $header = $dom->div(function() use ($dom, $elements, $mobCollapseId){
111 111
                     // drow <button @collapse>@next</button>
112 112
                     $collapseButton = $dom->button(function() use ($dom){
113
-                        $toggleItem = $dom->span(function(){
113
+                        $toggleItem = $dom->span(function() {
114 114
                             return 'Toggle menu';
115 115
                         }, ['class' => 'sr-only']);
116 116
                         $toggleIcon = null;
117 117
                         for ($i = 0; $i < 3; $i++) {
118
-                            $toggleIcon .= $dom->span(function(){
118
+                            $toggleIcon .= $dom->span(function() {
119 119
                                 return null;
120 120
                             }, ['class' => 'icon-bar']);
121 121
                         }
122
-                        return $toggleItem . $toggleIcon;
123
-                    }, ['type' => 'button', 'class' => 'navbar-toggle collapsed', 'data-toggle' => 'collapse', 'data-target' => '#' . $mobCollapseId]);
122
+                        return $toggleItem.$toggleIcon;
123
+                    }, ['type' => 'button', 'class' => 'navbar-toggle collapsed', 'data-toggle' => 'collapse', 'data-target' => '#'.$mobCollapseId]);
124 124
                     // drow <div @brand>@brandtext<?div>
125 125
                     $brand = null;
126 126
                     if (isset($elements['brand'])) {
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
                             }, ['class' => 'navbar-brand']);
133 133
                         }
134 134
                     }
135
-                    return $collapseButton . $brand;
135
+                    return $collapseButton.$brand;
136 136
                 }, ['class' => 'navbar-header']);
137 137
                 // return header and body concat
138
-                return $header . $body;
138
+                return $header.$body;
139 139
             }, $elements['container']);
140 140
         }, $elements['nav']);
141 141
     }
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/HTML/Form/Constructor.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     {
46 46
         // check if properties is passed well
47 47
         if ($properties !== null && !Obj::isArray($properties)) {
48
-            throw new SyntaxException('Property must be passed as array or null! Field: ' . $name);
48
+            throw new SyntaxException('Property must be passed as array or null! Field: '.$name);
49 49
         }
50 50
         
51 51
         // add properties to autovalidation by js (properties passed by ref)
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
         
99 99
         // if field is unknown type add notification in debugbar
100 100
         if (App::$Debug !== null) {
101
-            App::$Debug->addMessage('Field with name [' . App::$Security->strip_tags($name) . '] have unknown type [' . $this->type . ']', 'error');
101
+            App::$Debug->addMessage('Field with name ['.App::$Security->strip_tags($name).'] have unknown type ['.$this->type.']', 'error');
102 102
         }
103
-        return 'No data: ' . App::$Security->strip_tags($name);
103
+        return 'No data: '.App::$Security->strip_tags($name);
104 104
     }
105 105
     
106 106
     /**
@@ -147,12 +147,12 @@  discard block
 block discarded – undo
147 147
         if (Str::contains('.', $name)) {
148 148
             $splitedName = explode('.', $name);
149 149
             foreach ($splitedName as $nameKey) {
150
-                $properties['name'] .= '[' . $nameKey . ']';
151
-                $properties['id'] .= '-' . $nameKey;
150
+                $properties['name'] .= '['.$nameKey.']';
151
+                $properties['id'] .= '-'.$nameKey;
152 152
             }
153 153
         } else { // standard property definition - add field name
154
-            $properties['name'] .= '[' . $name . ']';
155
-            $properties['id'] .= '-' . $name;
154
+            $properties['name'] .= '['.$name.']';
155
+            $properties['id'] .= '-'.$name;
156 156
         }
157 157
     }
158 158
 }
159 159
\ No newline at end of file
Please login to merge, or discard this patch.
src/Ffcms/Core/Helper/HTML/System/NativeGenerator.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
             $purifier = App::$Memory->get('object.purifier.helpers');
24 24
         } else {
25 25
             $config = \HTMLPurifier_Config::createDefault();
26
-            $config->set('Cache.SerializerPath', root . '/Private/Cache/HTMLPurifier/');
26
+            $config->set('Cache.SerializerPath', root.'/Private/Cache/HTMLPurifier/');
27 27
             $config->set('AutoFormat.AutoParagraph', false);
28 28
 
29 29
             // allow use target=_blank for links
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
         $build = null;
66 66
         foreach ($property as $p => $v) {
67 67
             if ($v === null || $v === false || $v === true) {
68
-                $build .= ' ' . self::nohtml($p);
68
+                $build .= ' '.self::nohtml($p);
69 69
             } else {
70
-                $build .= ' ' . self::nohtml($p) . '="' . self::nohtml($v) . '"';
70
+                $build .= ' '.self::nohtml($p).'="'.self::nohtml($v).'"';
71 71
             }
72 72
         }
73 73
         return $build;
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public static function buildSingleTag($tagName, array $property = null, $closeSlash = true)
84 84
     {
85
-        return '<' . self::nohtml($tagName) . self::applyProperty($property) . ($closeSlash ? '/>' : '>');
85
+        return '<'.self::nohtml($tagName).self::applyProperty($property).($closeSlash ? '/>' : '>');
86 86
     }
87 87
 
88 88
     /**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             $value = self::nohtml($value);
101 101
         }
102 102
         
103
-        return '<' . $tagName . self::applyProperty($property) . '>' . $value . '</' . $tagName . '>';
103
+        return '<'.$tagName.self::applyProperty($property).'>'.$value.'</'.$tagName.'>';
104 104
     }
105 105
 
106 106
     /**
@@ -142,13 +142,13 @@  discard block
 block discarded – undo
142 142
                 if (!Str::contains('/', $elementPoint) || count($elementArray) < 2) {
143 143
                     $active = $elementPoint === $currentPoint;
144 144
                 } else {
145
-                    $elementPoint = $elementArray[0] . '/' . $elementArray[1];
145
+                    $elementPoint = $elementArray[0].'/'.$elementArray[1];
146 146
                     $active = Str::startsWith($elementPoint, $currentPoint);
147 147
                 }
148 148
                 break;
149 149
             case 'id':
150 150
                 $elementArray = explode('/', $elementPoint);
151
-                $elementPoint = $elementArray[0] . '/' . $elementArray[1];
151
+                $elementPoint = $elementArray[0].'/'.$elementArray[1];
152 152
                 if ($elementArray[2] === null) { // looks like id is not defined in element
153 153
                     if (Str::contains('?', $currentPoint)) {
154 154
                         $currentPoint = Str::firstIn($currentPoint, '?');
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                     $currentToId = implode('/', array_slice($currentArray, 0, 3));
158 158
                     $active = $elementPoint === $currentToId;
159 159
                 } else {
160
-                    $elementPoint .= '/' . $elementArray[2];
160
+                    $elementPoint .= '/'.$elementArray[2];
161 161
                     $active = Str::startsWith($elementPoint, $currentPoint);
162 162
                 }
163 163
                 break;
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      */
213 213
     public static function convertLink($uri)
214 214
     {
215
-        $link = App::$Alias->baseUrl . '/';
215
+        $link = App::$Alias->baseUrl.'/';
216 216
         if (Obj::isArray($uri)) {
217 217
             $link .= Url::buildPathway($uri);
218 218
         } elseif (Str::startsWith('http', $uri)) {
Please login to merge, or discard this patch.