@@ -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 | |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | { |
| 32 | 32 | $filter = new Twig_SimpleFunction( |
| 33 | 33 | 'getUrl', |
| 34 | - function ( |
|
| 34 | + function( |
|
| 35 | 35 | $alias, |
| 36 | 36 | $params = [] |
| 37 | 37 | ) { |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | { |
| 48 | 48 | $filter = new \Twig_SimpleFunction( |
| 49 | 49 | 'Widget_*_*', |
| 50 | - function ($widgetNameStr, $widgetActionStr, $args = []) { |
|
| 50 | + function($widgetNameStr, $widgetActionStr, $args = []) { |
|
| 51 | 51 | $function = new Functions\Widget($this->twig, $this->config, $widgetNameStr, $widgetActionStr, $args); |
| 52 | 52 | return $function->run(); |
| 53 | 53 | }, |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | { |
| 61 | 61 | $filter = new \Twig_SimpleFunction( |
| 62 | 62 | 'queryParams', |
| 63 | - function ($queryParams, $prefix = '?') { |
|
| 63 | + function($queryParams, $prefix = '?') { |
|
| 64 | 64 | return $prefix . http_build_query($queryParams); |
| 65 | 65 | }, |
| 66 | 66 | array('is_safe' => array('html')) |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | { |
| 73 | 73 | $filter = new \Twig_SimpleFunction( |
| 74 | 74 | 'siteUrl', |
| 75 | - function ($path = '') { |
|
| 75 | + function($path = '') { |
|
| 76 | 76 | return $this->config['base_url'] . $path; |
| 77 | 77 | }, |
| 78 | 78 | array('is_safe' => array('html')) |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | { |
| 85 | 85 | $filter = new \Twig_SimpleFunction( |
| 86 | 86 | 'varDump', |
| 87 | - function ($args) { |
|
| 87 | + function($args) { |
|
| 88 | 88 | /** |
| 89 | 89 | * @noinspection ForgottenDebugOutputInspection |
| 90 | 90 | */ |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | $filter = new \Twig_SimpleFunction( |
| 104 | 104 | 'Pagination', |
| 105 | - function ( |
|
| 105 | + function( |
|
| 106 | 106 | int $total, |
| 107 | 107 | int $current, |
| 108 | 108 | string $linkTemplate, |
@@ -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 | /** |
@@ -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 | |
@@ -37,11 +37,11 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | public function run(): string |
| 39 | 39 | { |
| 40 | - $items = ''; |
|
| 40 | + $items = ''; |
|
| 41 | 41 | $renderedEllipses = 0; |
| 42 | 42 | $useEllipses = ($this->total > 10) ? 1 : 0; |
| 43 | 43 | |
| 44 | - for ($itemIndex=1; $itemIndex <= $this->total; $itemIndex++) { |
|
| 44 | + for ($itemIndex = 1; $itemIndex <= $this->total; $itemIndex++) { |
|
| 45 | 45 | $item = $this->getItem($itemIndex, $renderedEllipses, $useEllipses); |
| 46 | 46 | $items .= $item[0]; |
| 47 | 47 | $renderedEllipses = $item[1]; |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | private function returnEllipses(int $renderedEllipses) |
| 99 | 99 | { |
| 100 | - $item = ''; |
|
| 100 | + $item = ''; |
|
| 101 | 101 | if ($renderedEllipses === 0) { |
| 102 | 102 | $item = $this->ellipsesTemplate; |
| 103 | 103 | } |