@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Selami\View\Twig\Functions; |
5 | 5 | |
@@ -23,13 +23,13 @@ discard block |
||
23 | 23 | $this->twig = $twig; |
24 | 24 | $this->config = $config; |
25 | 25 | $widgetAction = CaseConverter::toPascalCase($widgetActionStr); |
26 | - $widgetName = CaseConverter::toPascalCase($widgetNameStr); |
|
26 | + $widgetName = CaseConverter::toPascalCase($widgetNameStr); |
|
27 | 27 | $widget = '\\' . $this->config['app_namespace'] . '\\Widget\\' . $widgetName; |
28 | 28 | $this->checkClassIfExists($widget, $widgetName, $widgetAction); |
29 | 29 | $widgetInstance = new $widget($args); |
30 | 30 | $templateFileBasename = $args['template'] ?? CaseConverter::toSnakeCase($widgetActionStr) . '.twig'; |
31 | 31 | $this->checkIdTemplateFileExist($templateFileBasename, $widgetNameStr, $widgetActionStr); |
32 | - $this->templateFile = '_widgets/' |
|
32 | + $this->templateFile = '_widgets/' |
|
33 | 33 | . CaseConverter::toSnakeCase($widgetNameStr) . '/' . $templateFileBasename; |
34 | 34 | $this->widgetData = $widgetInstance->{$widgetAction}(); |
35 | 35 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Selami\View\Twig\Functions; |
5 | 5 | |
@@ -40,8 +40,8 @@ discard block |
||
40 | 40 | private function findRelativePath($relativePath, $param, $value): string |
41 | 41 | { |
42 | 42 | if (strpos($param, ':') === strlen($param)-1) { |
43 | - return preg_replace('/{'.$param.'(.*?)}/msi', $value, $relativePath); |
|
43 | + return preg_replace('/{' . $param . '(.*?)}/msi', $value, $relativePath); |
|
44 | 44 | } |
45 | - return str_replace('{'.$param.'}', $value, $relativePath); |
|
45 | + return str_replace('{' . $param . '}', $value, $relativePath); |
|
46 | 46 | } |
47 | 47 | } |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Selami\View; |
5 | 5 |
@@ -86,8 +86,8 @@ discard block |
||
86 | 86 | 'varDump', |
87 | 87 | function ($args) { |
88 | 88 | /** |
89 | - * @noinspection ForgottenDebugOutputInspection |
|
90 | - */ |
|
89 | + * @noinspection ForgottenDebugOutputInspection |
|
90 | + */ |
|
91 | 91 | var_dump($args); |
92 | 92 | }, |
93 | 93 | array('is_safe' => array('html')) |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | protected function extendForPagination() : void |
99 | 99 | { |
100 | 100 | /** |
101 | - * @noinspection MoreThanThreeArgumentsInspection |
|
101 | + * @noinspection MoreThanThreeArgumentsInspection |
|
102 | 102 | */ |
103 | 103 | $filter = new \Twig_SimpleFunction( |
104 | 104 | 'Pagination', |
@@ -3,11 +3,8 @@ |
||
3 | 3 | |
4 | 4 | namespace Selami\View\Twig; |
5 | 5 | |
6 | -use Selami\Stdlib\CaseConverter; |
|
7 | 6 | use Selami\View\ExtensionsAbstract; |
8 | 7 | use Twig\Environment; |
9 | -use InvalidArgumentException; |
|
10 | -use BadMethodCallException; |
|
11 | 8 | use Twig_SimpleFunction; |
12 | 9 | |
13 | 10 | /** |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $dictionary = $this->config['dictionary']; |
33 | 33 | $filter = new \Twig_SimpleFunction( |
34 | 34 | 'translate', |
35 | - function ( |
|
35 | + function( |
|
36 | 36 | $string |
37 | 37 | ) use ($dictionary) { |
38 | 38 | if (array_key_exists($string, $dictionary)) { |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | { |
50 | 50 | $filter = new Twig_SimpleFunction( |
51 | 51 | 'getUrl', |
52 | - function ( |
|
52 | + function( |
|
53 | 53 | $alias, |
54 | 54 | $params = [] |
55 | 55 | ) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | { |
66 | 66 | $filter = new \Twig_SimpleFunction( |
67 | 67 | 'Widget_*_*', |
68 | - function ($widgetNameStr, $widgetActionStr, $args = []) { |
|
68 | + function($widgetNameStr, $widgetActionStr, $args = []) { |
|
69 | 69 | $function = new Functions\Widget($this->twig, $this->config, $widgetNameStr, $widgetActionStr, $args); |
70 | 70 | return $function->run(); |
71 | 71 | }, |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | { |
79 | 79 | $filter = new \Twig_SimpleFunction( |
80 | 80 | 'queryParams', |
81 | - function ($queryParams, $prefix = '?') { |
|
81 | + function($queryParams, $prefix = '?') { |
|
82 | 82 | return $prefix . http_build_query($queryParams); |
83 | 83 | }, |
84 | 84 | array('is_safe' => array('html')) |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | { |
91 | 91 | $filter = new \Twig_SimpleFunction( |
92 | 92 | 'siteUrl', |
93 | - function ($path = '') { |
|
93 | + function($path = '') { |
|
94 | 94 | return $this->config['base_url'] . $path; |
95 | 95 | }, |
96 | 96 | array('is_safe' => array('html')) |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | { |
103 | 103 | $filter = new \Twig_SimpleFunction( |
104 | 104 | 'varDump', |
105 | - function ($args) { |
|
105 | + function($args) { |
|
106 | 106 | /** |
107 | 107 | * @noinspection ForgottenDebugOutputInspection |
108 | 108 | */ |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | $filter = new \Twig_SimpleFunction( |
122 | 122 | 'Pagination', |
123 | - function ( |
|
123 | + function( |
|
124 | 124 | int $total, |
125 | 125 | int $current, |
126 | 126 | string $linkTemplate, |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Selami\View\Twig\Functions; |
5 | 5 |