@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | use _generated\FunctionalTesterActions; |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * Define custom actions here |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * Define custom actions here |
|
| 25 | + */ |
|
| 26 | 26 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | use _generated\FunctionalTesterActions; |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * Define custom actions here |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * Define custom actions here |
|
| 25 | + */ |
|
| 26 | 26 | } |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | try { |
| 144 | 144 | /** @var \Ffcms\Core\Arch\Controller $callClass */ |
| 145 | 145 | $callClass = null; |
| 146 | - $callMethod = 'action' . self::$Request->getAction(); |
|
| 146 | + $callMethod = 'action'.self::$Request->getAction(); |
|
| 147 | 147 | |
| 148 | 148 | // founded callback injection alias |
| 149 | 149 | if (self::$Request->getCallbackAlias() !== false) { |
@@ -151,16 +151,16 @@ discard block |
||
| 151 | 151 | if (class_exists($cName)) { |
| 152 | 152 | $callClass = new $cName; |
| 153 | 153 | } else { |
| 154 | - throw new NotFoundException('Callback alias of class "' . App::$Security->strip_tags($cName) . '" is not founded'); |
|
| 154 | + throw new NotFoundException('Callback alias of class "'.App::$Security->strip_tags($cName).'" is not founded'); |
|
| 155 | 155 | } |
| 156 | 156 | } else { // typical parsing of native apps |
| 157 | - $cName = '\Apps\Controller\\' . env_name . '\\' . self::$Request->getController(); |
|
| 157 | + $cName = '\Apps\Controller\\'.env_name.'\\'.self::$Request->getController(); |
|
| 158 | 158 | |
| 159 | 159 | // try to initialize class object |
| 160 | 160 | if (class_exists($cName)) { |
| 161 | 161 | $callClass = new $cName; |
| 162 | 162 | } else { |
| 163 | - throw new NotFoundException('Application can not be runned. Initialized class not founded: ' . App::$Security->strip_tags($cName)); |
|
| 163 | + throw new NotFoundException('Application can not be runned. Initialized class not founded: '.App::$Security->strip_tags($cName)); |
|
| 164 | 164 | } |
| 165 | 165 | } |
| 166 | 166 | |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | // get full compiled response |
| 205 | 205 | $html = $callClass->getOutput(); |
| 206 | 206 | } else { |
| 207 | - throw new NotFoundException('Method "' . App::$Security->strip_tags($callMethod) . '()" not founded in "' . get_class($callClass) . '"'); |
|
| 207 | + throw new NotFoundException('Method "'.App::$Security->strip_tags($callMethod).'()" not founded in "'.get_class($callClass).'"'); |
|
| 208 | 208 | } |
| 209 | 209 | } catch (NotFoundException $e) { // catch exceptions and set output |
| 210 | 210 | $html = $e->display(); |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | } elseif (method_exists($class, $obj)) { // maybe its a function? |
| 96 | 96 | $class = $class::$obj; // call function |
| 97 | 97 | } else { |
| 98 | - throw new SyntaxException('Filter callback execution failed: ' . $filter_name); |
|
| 98 | + throw new SyntaxException('Filter callback execution failed: '.$filter_name); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | } |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | if (method_exists($class, $method)) { |
| 106 | 106 | $check = @$class::$method($field_value, $filter_argv); |
| 107 | 107 | } else { |
| 108 | - throw new SyntaxException('Filter callback execution failed: ' . $filter_name); |
|
| 108 | + throw new SyntaxException('Filter callback execution failed: '.$filter_name); |
|
| 109 | 109 | } |
| 110 | 110 | } elseif (method_exists('Ffcms\Core\Filter\Native', $filter_name)) { // only full namespace\class path based :( |
| 111 | 111 | if ($filter_argv != null) { |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | $check = Native::$filter_name($field_value); |
| 115 | 115 | } |
| 116 | 116 | } else { |
| 117 | - throw new SyntaxException('Filter "' . $filter_name . '" is not exist'); |
|
| 117 | + throw new SyntaxException('Filter "'.$filter_name.'" is not exist'); |
|
| 118 | 118 | } |
| 119 | 119 | if ($check !== true) { // switch only on fail check. |
| 120 | 120 | $this->_badAttr[] = $field_name; |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | if ($inputType !== 'file') { |
| 170 | 170 | if ($html !== true) { |
| 171 | 171 | $field_value = App::$Security->strip_tags($field_value); |
| 172 | - } elseif($secure !== true) { |
|
| 172 | + } elseif ($secure !== true) { |
|
| 173 | 173 | $field_value = App::$Security->secureHtml($field_value); |
| 174 | 174 | } |
| 175 | 175 | } |
@@ -265,10 +265,10 @@ discard block |
||
| 265 | 265 | $paramQuery = $this->getFormName(); |
| 266 | 266 | if (Str::contains('.', $param)) { |
| 267 | 267 | foreach (explode('.', $param) as $item) { |
| 268 | - $paramQuery .= '[' . $item . ']'; |
|
| 268 | + $paramQuery .= '['.$item.']'; |
|
| 269 | 269 | } |
| 270 | 270 | } else { |
| 271 | - $paramQuery .= '[' . $param . ']'; |
|
| 271 | + $paramQuery .= '['.$param.']'; |
|
| 272 | 272 | } |
| 273 | 273 | |
| 274 | 274 | // get request based on method and param query |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | $hints[] = '<code>LIMIT</code> without <code>ORDER BY</code> causes non-deterministic results, depending on the query execution plan'; |
| 161 | 161 | } |
| 162 | 162 | if (preg_match('/LIKE\\s[\'"](%.*?)[\'"]/i', $query, $matches)) { |
| 163 | - $hints[] = 'An argument has a leading wildcard character: <code>' . $matches[1] . '</code>. |
|
| 163 | + $hints[] = 'An argument has a leading wildcard character: <code>'.$matches[1].'</code>. |
|
| 164 | 164 | The predicate with this argument is not sargable and cannot use an index if one exists.'; |
| 165 | 165 | } |
| 166 | 166 | return implode("<br />", $hints); |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | foreach ($traces as $trace) { |
| 176 | 176 | if (isset($trace['class']) && isset($trace['file']) && strpos( |
| 177 | 177 | $trace['file'], |
| 178 | - DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR |
|
| 178 | + DIRECTORY_SEPARATOR.'vendor'.DIRECTORY_SEPARATOR |
|
| 179 | 179 | ) === false |
| 180 | 180 | ) { |
| 181 | 181 | if (isset($trace['object']) && is_a($trace['object'], 'Twig_Template')) { |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | $line = isset($trace['line']) ? $trace['line'] : '?'; |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - return $this->normalizeFilename($file) . ':' . $line; |
|
| 190 | + return $this->normalizeFilename($file).':'.$line; |
|
| 191 | 191 | } elseif (isset($trace['function']) && $trace['function'] == 'Illuminate\Routing\{closure}') { |
| 192 | 192 | return 'Route binding'; |
| 193 | 193 | } |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | public function __construct() |
| 17 | 17 | { |
| 18 | 18 | $config = \HTMLPurifier_Config::createDefault(); |
| 19 | - $config->set('Cache.SerializerPath', root . '/Private/Cache/HTMLPurifier/'); |
|
| 19 | + $config->set('Cache.SerializerPath', root.'/Private/Cache/HTMLPurifier/'); |
|
| 20 | 20 | $config->set('HTML.Allowed', 'p,b,strong,em,a[href],i,span,ul,ol,li,blockquote'); |
| 21 | 21 | //$config->set('URI.Base', 'http://www.example.com'); |
| 22 | 22 | //$config->set('URI.MakeAbsolute', true); |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | * String html tags and escape quotes |
| 51 | 51 | * @param string|array $html |
| 52 | 52 | * @param boolean $escapeQuotes |
| 53 | - * @return string|array|null |
|
| 53 | + * @return string|null |
|
| 54 | 54 | */ |
| 55 | 55 | public function strip_tags($html, $escapeQuotes = true) |
| 56 | 56 | { |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * @deprecated |
| 91 | 91 | * @param $var |
| 92 | 92 | * @param null $indent |
| 93 | - * @return mixed|string |
|
| 93 | + * @return string|null |
|
| 94 | 94 | */ |
| 95 | 95 | public function var_export54($var, $indent = null, $guessTypes = false) { |
| 96 | 96 | return Arr::exportVar($var, $indent, $guessTypes); |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | { |
| 56 | 56 | $path = self::diskPath($path); |
| 57 | 57 | if (!Str::startsWith(root, $path)) { |
| 58 | - $path = root . DIRECTORY_SEPARATOR . ltrim($path, '\\/'); |
|
| 58 | + $path = root.DIRECTORY_SEPARATOR.ltrim($path, '\\/'); |
|
| 59 | 59 | } |
| 60 | 60 | return $path; |
| 61 | 61 | } |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | return false; |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - $pattern = rtrim($path, '/') . '/*'; |
|
| 94 | + $pattern = rtrim($path, '/').'/*'; |
|
| 95 | 95 | $entry = glob($pattern, $mod); |
| 96 | 96 | |
| 97 | 97 | if ($returnRelative === true) { |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | array_pop($separatedPath); |
| 123 | 123 | $clearPath = implode(DIRECTORY_SEPARATOR, $separatedPath); |
| 124 | 124 | |
| 125 | - @rename($path, $clearPath . DIRECTORY_SEPARATOR . $newDirName); |
|
| 125 | + @rename($path, $clearPath.DIRECTORY_SEPARATOR.$newDirName); |
|
| 126 | 126 | |
| 127 | 127 | return true; |
| 128 | 128 | } |
@@ -165,15 +165,15 @@ |
||
| 165 | 165 | { |
| 166 | 166 | $path = Normalize::diskFullPath($path); |
| 167 | 167 | |
| 168 | - $dir = opendir($path . '/.'); |
|
| 168 | + $dir = opendir($path.'/.'); |
|
| 169 | 169 | while ($item = readdir($dir)) { |
| 170 | - if (is_file($sub = $path . '/' . $item)) { |
|
| 170 | + if (is_file($sub = $path.'/'.$item)) { |
|
| 171 | 171 | $item_ext = Str::lastIn($item, '.'); |
| 172 | 172 | if ($ext === null || Arr::in($item_ext, $ext)) { |
| 173 | 173 | if ($returnRelative) { |
| 174 | 174 | $files[] = $item; |
| 175 | 175 | } else { |
| 176 | - $files[] = $path . DIRECTORY_SEPARATOR . $item; |
|
| 176 | + $files[] = $path.DIRECTORY_SEPARATOR.$item; |
|
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | } else { |