@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | { |
| 210 | 210 | $lines = file($filename, FILE_IGNORE_NEW_LINES); |
| 211 | 211 | |
| 212 | - if(!$lines) { |
|
| 212 | + if (!$lines) { |
|
| 213 | 213 | return []; |
| 214 | 214 | } |
| 215 | 215 | |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | */ |
| 228 | 228 | public function fileName(string $path): string |
| 229 | 229 | { |
| 230 | - return (string)pathinfo($path, PATHINFO_FILENAME); |
|
| 230 | + return (string) pathinfo($path, PATHINFO_FILENAME); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | */ |
| 238 | 238 | public function extension(string $path): string |
| 239 | 239 | { |
| 240 | - return (string)pathinfo($path, PATHINFO_EXTENSION); |
|
| 240 | + return (string) pathinfo($path, PATHINFO_EXTENSION); |
|
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | /** |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | { |
| 73 | 73 | if (!empty($value)) { |
| 74 | 74 | $captcha = CaptchaManager::getCaptcha(); |
| 75 | - if (!$captcha->verifyResponse($value)){ |
|
| 75 | + if (!$captcha->verifyResponse($value)) { |
|
| 76 | 76 | $this->addError($field, 'captcha', $param); |
| 77 | 77 | } |
| 78 | 78 | } |
@@ -150,8 +150,9 @@ |
||
| 150 | 150 | */ |
| 151 | 151 | public function verifyResponse(string $response, $clientIp = null): bool |
| 152 | 152 | { |
| 153 | - if (is_null($this->secretkey)) |
|
| 154 | - throw new \Exception('You must set your secret key'); |
|
| 153 | + if (is_null($this->secretkey)) { |
|
| 154 | + throw new \Exception('You must set your secret key'); |
|
| 155 | + } |
|
| 155 | 156 | |
| 156 | 157 | if (empty($response)) { |
| 157 | 158 | |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | */ |
| 99 | 99 | public function renderJs(): string |
| 100 | 100 | { |
| 101 | - return '<script src="'. self::CLIENT_API .'"></script>'; |
|
| 101 | + return '<script src="' . self::CLIENT_API . '"></script>'; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | /** |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | public function display(string $formIdentifier = '', array $attributes = []): string |
| 112 | 112 | { |
| 113 | 113 | $captchaElement = ''; |
| 114 | - if (strtolower($this->type) == 'visible'){ |
|
| 114 | + if (strtolower($this->type) == 'visible') { |
|
| 115 | 115 | $captchaElement = $this->getVisibleElement(); |
| 116 | 116 | } elseif (strtolower($this->type) == 'invisible') { |
| 117 | 117 | $captchaElement = $this->getInvisibleElement($formIdentifier); |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | $url = self::VERIFY_URL . '?' . http_build_query($query); |
| 147 | 147 | |
| 148 | 148 | $this->http->createRequest($url)->setMethod('GET')->start(); |
| 149 | - $response = (array)$this->http->getResponseBody(); |
|
| 149 | + $response = (array) $this->http->getResponseBody(); |
|
| 150 | 150 | |
| 151 | 151 | if (empty($response) || is_null($response) || !$response) { |
| 152 | 152 | return false; |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | }) |
| 246 | 246 | |
| 247 | 247 | function onSubmit (){ |
| 248 | - document.getElementById("'. $formIdentifier .'").submit(); |
|
| 248 | + document.getElementById("'. $formIdentifier . '").submit(); |
|
| 249 | 249 | } |
| 250 | 250 | </script>'; |
| 251 | 251 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | public function display(string $formIdentifier = '', array $attributes = []): string |
| 91 | 91 | { |
| 92 | 92 | $captchaElement = ''; |
| 93 | - if (strtolower($this->type) == 'visible'){ |
|
| 93 | + if (strtolower($this->type) == 'visible') { |
|
| 94 | 94 | $captchaElement = $this->getVisibleElement($attributes); |
| 95 | 95 | } elseif (strtolower($this->type) == 'invisible') { |
| 96 | 96 | $captchaElement = $this->getInvisibleElement($formIdentifier); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | */ |
| 106 | 106 | public function renderJs(): string |
| 107 | 107 | { |
| 108 | - return '<script src="'. static::CLIENT_API .'" async defer></script>' . "\n"; |
|
| 108 | + return '<script src="' . static::CLIENT_API . '" async defer></script>' . "\n"; |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | */ |
| 154 | 154 | public function getErrorCodes(): array |
| 155 | 155 | { |
| 156 | - if (!empty($this->errorCodes)){ |
|
| 156 | + if (!empty($this->errorCodes)) { |
|
| 157 | 157 | return $this->errorCodes; |
| 158 | 158 | } |
| 159 | 159 | return []; |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | { |
| 171 | 171 | $this->http->createRequest(static::VERIFY_URL)->setMethod('POST')->setData($query)->start(); |
| 172 | 172 | |
| 173 | - return (array)$this->http->getResponseBody(); |
|
| 173 | + return (array) $this->http->getResponseBody(); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
@@ -218,12 +218,12 @@ discard block |
||
| 218 | 218 | let button = document.getElementsByTagName("button"); |
| 219 | 219 | |
| 220 | 220 | button[0].setAttribute("data-sitekey", "' . $this->sitekey . '"); |
| 221 | - button[0].setAttribute("data-callback", "'. $functionName .'"); |
|
| 221 | + button[0].setAttribute("data-callback", "'. $functionName . '"); |
|
| 222 | 222 | button[0].classList.add("h-captcha"); |
| 223 | 223 | }) |
| 224 | 224 | |
| 225 | - function '. $functionName .'(){ |
|
| 226 | - document.getElementById("'. $formIdentifier .'").submit(); |
|
| 225 | + function '. $functionName . '(){ |
|
| 226 | + document.getElementById("'. $formIdentifier . '").submit(); |
|
| 227 | 227 | } |
| 228 | 228 | </script>'; |
| 229 | 229 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | if (!in_array($captchaAdapter, self::ADAPTERS) && !is_null($captchaAdapter)) { |
| 30 | 30 | throw CaptchaException::unsupportedAdapter($captchaAdapter); |
| 31 | - }elseif (is_null($captchaAdapter)){ |
|
| 31 | + }elseif (is_null($captchaAdapter)) { |
|
| 32 | 32 | throw new \Exception(''); |
| 33 | 33 | } |
| 34 | 34 | |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | if (!in_array($captchaAdapter, self::ADAPTERS) && !is_null($captchaAdapter)) { |
| 30 | 30 | throw CaptchaException::unsupportedAdapter($captchaAdapter); |
| 31 | - }elseif (is_null($captchaAdapter)){ |
|
| 31 | + } elseif (is_null($captchaAdapter)){ |
|
| 32 | 32 | throw new \Exception(''); |
| 33 | 33 | } |
| 34 | 34 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | $this->findPatternMatches($uri); |
| 101 | 101 | |
| 102 | 102 | if (!count($this->matchedRoutes)) { |
| 103 | - stop(function () { |
|
| 103 | + stop(function() { |
|
| 104 | 104 | $this->handleNotFound(); |
| 105 | 105 | }); |
| 106 | 106 | } |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | { |
| 156 | 156 | $routeInfo = []; |
| 157 | 157 | |
| 158 | - array_walk($currentRoute, function ($value, $key) use (&$routeInfo) { |
|
| 158 | + array_walk($currentRoute, function($value, $key) use (&$routeInfo) { |
|
| 159 | 159 | $routeInfo[ucfirst($key)] = json_encode($value); |
| 160 | 160 | }); |
| 161 | 161 | |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | $routePattern = '(\/)?'; |
| 200 | 200 | $routeParams = []; |
| 201 | 201 | |
| 202 | - $lastIndex = (int)array_key_last($routeSegments); |
|
| 202 | + $lastIndex = (int) array_key_last($routeSegments); |
|
| 203 | 203 | |
| 204 | 204 | foreach ($routeSegments as $index => $segment) { |
| 205 | 205 | $segmentParam = $this->checkSegment($segment, $index, $lastIndex); |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | use Quantum\Di\Di; |
| 6 | 6 | use Quantum\Libraries\Storage\FileSystem; |
| 7 | 7 | |
| 8 | -class ModuleManager{ |
|
| 8 | +class ModuleManager { |
|
| 9 | 9 | |
| 10 | 10 | protected $fs; |
| 11 | 11 | protected $optionEnabled; |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | private $modulePath; |
| 17 | 17 | private $templatePath; |
| 18 | 18 | |
| 19 | - function __construct(string $moduleName, string $template, string $demo, $enabled){ |
|
| 19 | + function __construct(string $moduleName, string $template, string $demo, $enabled) { |
|
| 20 | 20 | $this->moduleName = $moduleName; |
| 21 | 21 | |
| 22 | 22 | $this->template = $template; |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | $modules = require $modulesConfigPath; |
| 46 | 46 | |
| 47 | 47 | foreach ($modules['modules'] as $module => $options) { |
| 48 | - if ($module == $this->moduleName || $options['prefix'] == strtolower($this->moduleName)) { |
|
| 48 | + if ($module == $this->moduleName || $options['prefix'] == strtolower($this->moduleName)) { |
|
| 49 | 49 | throw new \Exception("A module or prefix named '$this->moduleName' already exists"); |
| 50 | 50 | } |
| 51 | 51 | } |