@@ -27,18 +27,18 @@ |
||
27 | 27 | |
28 | 28 | if (!empty($_POST)) |
29 | 29 | { |
30 | - foreach ( $_POST as $key => $value ) |
|
30 | + foreach ($_POST as $key => $value) |
|
31 | 31 | { |
32 | - if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) |
|
32 | + if ((!is_string($value) && !is_numeric($value)) || !is_string($key)) |
|
33 | 33 | continue; |
34 | 34 | |
35 | - if ( get_magic_quotes_gpc() ) |
|
36 | - $value = htmlspecialchars( stripslashes((string)$value) ); |
|
35 | + if (get_magic_quotes_gpc()) |
|
36 | + $value = htmlspecialchars(stripslashes((string)$value)); |
|
37 | 37 | else |
38 | - $value = htmlspecialchars( (string)$value ); |
|
38 | + $value = htmlspecialchars((string)$value); |
|
39 | 39 | ?> |
40 | 40 | <tr> |
41 | - <th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th> |
|
41 | + <th style="vertical-align: top"><?php echo htmlspecialchars((string)$key); ?></th> |
|
42 | 42 | <td><pre class="samples"><?php echo $value; ?></pre></td> |
43 | 43 | </tr> |
44 | 44 | <?php |
@@ -11,6 +11,6 @@ |
||
11 | 11 | */ |
12 | 12 | public function valToHtml(): string |
13 | 13 | { |
14 | - return (string) $this->val(); |
|
14 | + return (string)$this->val(); |
|
15 | 15 | } |
16 | 16 | } |
@@ -29,6 +29,6 @@ |
||
29 | 29 | */ |
30 | 30 | protected function parse(string $source): array |
31 | 31 | { |
32 | - return (array) SymfonyYaml::parse($source); |
|
32 | + return (array)SymfonyYaml::parse($source); |
|
33 | 33 | } |
34 | 34 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public function setPage($page): self |
92 | 92 | { |
93 | - $this->page = (int) $page; |
|
93 | + $this->page = (int)$page; |
|
94 | 94 | |
95 | 95 | return $this; |
96 | 96 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public function setLimit(int $limit): self |
116 | 116 | { |
117 | - $this->limit = (int) $limit; |
|
117 | + $this->limit = (int)$limit; |
|
118 | 118 | |
119 | 119 | return $this; |
120 | 120 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | public function getFactories() |
13 | 13 | { |
14 | 14 | return [ |
15 | - 'templates' => function (App $app): Engine { |
|
15 | + 'templates' => function(App $app): Engine { |
|
16 | 16 | $root = dirname(dirname(__DIR__)); |
17 | 17 | |
18 | 18 | $templates = new Engine($root.'/templates'); |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | $templates->addData(['app' => $app]); |
22 | 22 | |
23 | - $templates->registerFunction('icon', function ($name) use ($icons) { |
|
23 | + $templates->registerFunction('icon', function($name) use ($icons) { |
|
24 | 24 | return $icons->get($name); |
25 | 25 | }); |
26 | 26 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | public function getFactories() |
12 | 12 | { |
13 | 13 | return [ |
14 | - 'router' => function (App $app): RouterContainer { |
|
14 | + 'router' => function(App $app): RouterContainer { |
|
15 | 15 | $router = new RouterContainer(); |
16 | 16 | |
17 | 17 | $map = $router->getMap(); |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | public function getFactories() |
14 | 14 | { |
15 | 15 | return [ |
16 | - 'middleware' => function (App $app): Dispatcher { |
|
16 | + 'middleware' => function(App $app): Dispatcher { |
|
17 | 17 | $middleware = []; |
18 | 18 | |
19 | 19 | $middleware[] = new Middlewares\Expires(); |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | $middleware[] = new Middlewares\ContentType(); |
23 | 23 | $middleware[] = new Middlewares\ContentLanguage(['en', 'gl', 'es']); |
24 | 24 | |
25 | - $middleware[] = function ($request, $next) use ($app) { |
|
25 | + $middleware[] = function($request, $next) use ($app) { |
|
26 | 26 | $language = $request->getHeaderLine('Accept-Language'); |
27 | 27 | $translator = new Translator(); |
28 | 28 | $translator->loadTranslations(Translations::fromPoFile(dirname(dirname(__DIR__)).'/locales/'.$language.'.po')); |
@@ -86,8 +86,8 @@ |
||
86 | 86 | { |
87 | 87 | $query = $request->getQueryParams(); |
88 | 88 | $thumbs = $this->app->getPath($query['thumbs']); |
89 | - $limit = empty($query['limit']) ? 100 : (int) $query['limit']; |
|
90 | - $offset = empty($query['offset']) ? 0 : (int) $query['offset']; |
|
89 | + $limit = empty($query['limit']) ? 100 : (int)$query['limit']; |
|
90 | + $offset = empty($query['offset']) ? 0 : (int)$query['offset']; |
|
91 | 91 | $pattern = empty($query['pattern']) ? '/*' : $query['pattern']; |
92 | 92 | |
93 | 93 | $files = []; |
@@ -203,7 +203,7 @@ |
||
203 | 203 | } |
204 | 204 | |
205 | 205 | if (in_array($name, $tables)) { |
206 | - $relations[$name] = (array) $value; |
|
206 | + $relations[$name] = (array)$value; |
|
207 | 207 | } |
208 | 208 | } |
209 | 209 |