@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $tokens = $this->params->getInfo()->getTokens(); |
59 | 59 | $allowed = $this->resolveActiveTokens(); |
60 | 60 | |
61 | - if(count($tokens) > count($allowed)) |
|
61 | + if (count($tokens) > count($allowed)) |
|
62 | 62 | { |
63 | 63 | $this->validationResult->makeError( |
64 | 64 | t('Unknown parameters found:').' '. |
@@ -81,10 +81,10 @@ discard block |
||
81 | 81 | |
82 | 82 | $encodings = $this->getSupportedEncodings(); |
83 | 83 | |
84 | - foreach($encodings as $keyword) |
|
84 | + foreach ($encodings as $keyword) |
|
85 | 85 | { |
86 | 86 | $token = $this->getEncodingToken($keyword); |
87 | - if($token) |
|
87 | + if ($token) |
|
88 | 88 | { |
89 | 89 | $allowed[] = $token; |
90 | 90 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | * @return $this |
33 | 33 | * @throws ParamsException |
34 | 34 | */ |
35 | - public function setURLDecoding(bool $decode=true) : self; |
|
35 | + public function setURLDecoding(bool $decode = true) : self; |
|
36 | 36 | |
37 | 37 | public function isURLDecoded(): bool; |
38 | 38 | } |