@@ -45,7 +45,7 @@ |
||
45 | 45 | { |
46 | 46 | $this->template = $template; |
47 | 47 | $this->request = $request; |
48 | - $this->parameters = (array)$parameters; |
|
48 | + $this->parameters = (array) $parameters; |
|
49 | 49 | $this->matchedSitemapItem = $matchedSitemapItem; |
50 | 50 | } |
51 | 51 |
@@ -154,8 +154,9 @@ |
||
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
157 | - * @param $template |
|
157 | + * @param string $template |
|
158 | 158 | * @param null | Application $application |
159 | + * @param Application $application |
|
159 | 160 | * @return string |
160 | 161 | */ |
161 | 162 | protected function getTemplateDir($template, $application = null) |
@@ -163,7 +163,7 @@ |
||
163 | 163 | if (isset($_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID])) { |
164 | 164 | $this->formId = $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID]; |
165 | 165 | } else { |
166 | - $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID] = (string)microtime(true); |
|
166 | + $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID] = (string) microtime(true); |
|
167 | 167 | $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName]['submitted'] = false; |
168 | 168 | $this->formId = $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID]; |
169 | 169 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function __construct($template, Request $request, $parameters, $matchedSitemapItem) |
28 | 28 | { |
29 | - $this->parameters = (array)$parameters; |
|
29 | + $this->parameters = (array) $parameters; |
|
30 | 30 | $this->checkParameters(); |
31 | 31 | |
32 | 32 | $lang = substr(isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : $this->defaultLanguage, 0, 2); |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | unset($this->parameters['languageParameterName']); |
64 | 64 | } |
65 | 65 | if (isset($this->parameters['forceRedirect'])) { |
66 | - $this->forceRedirect = (bool)$this->parameters['forceRedirect']; |
|
66 | + $this->forceRedirect = (bool) $this->parameters['forceRedirect']; |
|
67 | 67 | unset($this->parameters['forceRedirect']); |
68 | 68 | } |
69 | 69 | } |
@@ -124,8 +124,8 @@ |
||
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
127 | - * @param $lang |
|
128 | - * @param $request |
|
127 | + * @param string $lang |
|
128 | + * @param Request $request |
|
129 | 129 | */ |
130 | 130 | protected function checkForceRedirect($lang, $request) |
131 | 131 | { |
@@ -51,7 +51,7 @@ |
||
51 | 51 | */ |
52 | 52 | public function SetPreserveAspectRatio($bool) |
53 | 53 | { |
54 | - $this->_preserveAspectRatio = (bool)$bool; |
|
54 | + $this->_preserveAspectRatio = (bool) $bool; |
|
55 | 55 | return $this; |
56 | 56 | } |
57 | 57 |
@@ -20,7 +20,7 @@ |
||
20 | 20 | public static function slugify($str, $replace = array(), $delimiter = '-') |
21 | 21 | { |
22 | 22 | if (!empty($replace)) { |
23 | - $str = str_replace((array)$replace, ' ', $str); |
|
23 | + $str = str_replace((array) $replace, ' ', $str); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | $clean = iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $str); |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | </div> |
64 | 64 | </div> |
65 | 65 | </li> |
66 | - <?$value='';?> |
|
66 | + <?$value = ''; ?> |
|
67 | 67 | <? endforeach ?> |
68 | 68 | <? endif ?> |
69 | 69 | </ul> |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | <? include(__DIR__ . '/fieldTypes/' . str_replace(' ', '-', $field->type) . '.php') ?> |
84 | 84 | </div> |
85 | 85 | </li> |
86 | - <?$value='';?> |
|
86 | + <?$value = ''; ?> |
|
87 | 87 | <? endforeach ?> |
88 | 88 | <? endif ?> |
89 | 89 | </div> |
@@ -92,5 +92,5 @@ discard block |
||
92 | 92 | <a class="btn js-addrtemultiple">+</a> |
93 | 93 | <? endif ?> |
94 | 94 | </div> |
95 | - <?$value='';?> |
|
95 | + <?$value = ''; ?> |
|
96 | 96 | <? endforeach ?> |
@@ -34,7 +34,7 @@ |
||
34 | 34 | } |
35 | 35 | $object_vars = get_object_vars($valuelistObject->pairs); |
36 | 36 | ksort($object_vars); |
37 | - $valuelistObject->pairs = (object)$object_vars; |
|
37 | + $valuelistObject->pairs = (object) $object_vars; |
|
38 | 38 | |
39 | 39 | return $valuelistObject; |
40 | 40 | } else { |
@@ -151,7 +151,7 @@ |
||
151 | 151 | public function save() |
152 | 152 | { |
153 | 153 | $host = $this; |
154 | - array_map(function ($value) use ($host) { |
|
154 | + array_map(function($value) use ($host) { |
|
155 | 155 | $host->saveSubset($value); |
156 | 156 | }, $this->fileBasedSubsets); |
157 | 157 | } |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | { |
56 | 56 | if (!isset($_GET['unsanitized'])) { |
57 | 57 | $search = array( |
58 | - '/\>[^\S ]+/s', // strip whitespaces after tags, except space |
|
59 | - '/[^\S ]+\</s', // strip whitespaces before tags, except space |
|
60 | - '/(\s)+/s', // shorten multiple whitespace sequences |
|
58 | + '/\>[^\S ]+/s', // strip whitespaces after tags, except space |
|
59 | + '/[^\S ]+\</s', // strip whitespaces before tags, except space |
|
60 | + '/(\s)+/s', // shorten multiple whitespace sequences |
|
61 | 61 | '/<!--(.|\s)*?-->/' // Remove HTML comments |
62 | 62 | ); |
63 | 63 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | */ |
86 | 86 | function utf8Convert($array) |
87 | 87 | { |
88 | - array_walk_recursive($array, function (&$item) { |
|
88 | + array_walk_recursive($array, function(&$item) { |
|
89 | 89 | if (!mb_detect_encoding($item, 'utf-8', true)) { |
90 | 90 | $item = utf8_encode($item); |
91 | 91 | } |