@@ -118,11 +118,11 @@ |
||
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
121 | - * Parse the template source and use the cached |
|
122 | - * content if is available |
|
123 | - * @param string $name |
|
124 | - * @return $this |
|
125 | - */ |
|
121 | + * Parse the template source and use the cached |
|
122 | + * content if is available |
|
123 | + * @param string $name |
|
124 | + * @return $this |
|
125 | + */ |
|
126 | 126 | public function parse(string $name): self |
127 | 127 | { |
128 | 128 | $hash = md5($name); |
@@ -57,8 +57,7 @@ discard block |
||
57 | 57 | * Class Parser |
58 | 58 | * @package Platine\Template\Parser |
59 | 59 | */ |
60 | -class Parser |
|
61 | -{ |
|
60 | +class Parser { |
|
62 | 61 | |
63 | 62 | /** |
64 | 63 | * The template instance |
@@ -76,8 +75,7 @@ discard block |
||
76 | 75 | * Create new instance |
77 | 76 | * @param Template $template |
78 | 77 | */ |
79 | - public function __construct(Template $template) |
|
80 | - { |
|
78 | + public function __construct(Template $template) { |
|
81 | 79 | $this->template = $template; |
82 | 80 | } |
83 | 81 |
@@ -53,7 +53,6 @@ |
||
53 | 53 | * Class AbstractFilter |
54 | 54 | * @package Platine\Template\Parser |
55 | 55 | */ |
56 | -abstract class AbstractFilter |
|
57 | -{ |
|
56 | +abstract class AbstractFilter { |
|
58 | 57 | |
59 | 58 | } |
@@ -56,8 +56,7 @@ discard block |
||
56 | 56 | * Class AbstractCondition |
57 | 57 | * @package Platine\Template\Parser |
58 | 58 | */ |
59 | -abstract class AbstractCondition extends AbstractBlock |
|
60 | -{ |
|
59 | +abstract class AbstractCondition extends AbstractBlock { |
|
61 | 60 | |
62 | 61 | /** |
63 | 62 | * The current left variable to compare |
@@ -76,8 +75,7 @@ discard block |
||
76 | 75 | * @param mixed|null $value |
77 | 76 | * @return string|mixed|null |
78 | 77 | */ |
79 | - protected function stringValue($value) |
|
80 | - { |
|
78 | + protected function stringValue($value) { |
|
81 | 79 | if (is_object($value)) { |
82 | 80 | if (method_exists($value, '__toString')) { |
83 | 81 | return (string) $value; |
@@ -62,8 +62,7 @@ discard block |
||
62 | 62 | * Class FilterCollection |
63 | 63 | * @package Platine\Template\Parser |
64 | 64 | */ |
65 | -class FilterCollection |
|
66 | -{ |
|
65 | +class FilterCollection { |
|
67 | 66 | |
68 | 67 | /** |
69 | 68 | * The list of filter with their name and class |
@@ -74,8 +73,7 @@ discard block |
||
74 | 73 | /** |
75 | 74 | * Create new instance |
76 | 75 | */ |
77 | - public function __construct() |
|
78 | - { |
|
76 | + public function __construct() { |
|
79 | 77 | $this->addFilter(ArrayFilter::class); |
80 | 78 | $this->addFilter(DatetimeFilter::class); |
81 | 79 | $this->addFilter(HtmlFilter::class); |
@@ -115,8 +113,7 @@ discard block |
||
115 | 113 | * @param array<int, mixed> $args |
116 | 114 | * @return mixed |
117 | 115 | */ |
118 | - public function invoke(string $name, $value, array $args = []) |
|
119 | - { |
|
116 | + public function invoke(string $name, $value, array $args = []) { |
|
120 | 117 | // workaround for a single standard filter being a reserved |
121 | 118 | // keyword - we can't use overloading for static calls |
122 | 119 | if ($name === 'default') { |
@@ -113,8 +113,8 @@ discard block |
||
113 | 113 | * Quoted fragment pattern |
114 | 114 | */ |
115 | 115 | public const QUOTED_FRAGMENT = '(?:' . self::QUOTED_STRING |
116 | - . '|(?:[^\s,\|\'"]|' |
|
117 | - . self::QUOTED_STRING . ')+)'; |
|
116 | + . '|(?:[^\s,\|\'"]|' |
|
117 | + . self::QUOTED_STRING . ')+)'; |
|
118 | 118 | |
119 | 119 | /** |
120 | 120 | * Tag attributes pattern expression |
@@ -125,8 +125,8 @@ discard block |
||
125 | 125 | * Template parse pattern |
126 | 126 | */ |
127 | 127 | public const TOKENIZATION_REGEXP = '/(' . self::BLOCK_OPEN |
128 | - . '.*?' . self::BLOCK_CLOSE |
|
129 | - . '|' . self::VARIABLE_OPEN |
|
130 | - . '.*?' . self::VARIABLE_CLOSE |
|
131 | - . ')/'; |
|
128 | + . '.*?' . self::BLOCK_CLOSE |
|
129 | + . '|' . self::VARIABLE_OPEN |
|
130 | + . '.*?' . self::VARIABLE_CLOSE |
|
131 | + . ')/'; |
|
132 | 132 | } |
@@ -53,8 +53,7 @@ |
||
53 | 53 | * Class Token |
54 | 54 | * @package Platine\Template\Parser |
55 | 55 | */ |
56 | -class Token |
|
57 | -{ |
|
56 | +class Token { |
|
58 | 57 | /** |
59 | 58 | * The template opened variable |
60 | 59 | */ |
@@ -147,10 +147,10 @@ |
||
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
150 | - * Returns the class name of the tag. |
|
151 | - * |
|
152 | - * @return string |
|
153 | - */ |
|
150 | + * Returns the class name of the tag. |
|
151 | + * |
|
152 | + * @return string |
|
153 | + */ |
|
154 | 154 | protected function getName(): string |
155 | 155 | { |
156 | 156 | return strtolower(get_class($this)); |
@@ -55,8 +55,7 @@ discard block |
||
55 | 55 | * Class AbstractTag |
56 | 56 | * @package Platine\Template\Parser |
57 | 57 | */ |
58 | -abstract class AbstractTag |
|
59 | -{ |
|
58 | +abstract class AbstractTag { |
|
60 | 59 | |
61 | 60 | /** |
62 | 61 | * The name of this class tag |
@@ -88,8 +87,7 @@ discard block |
||
88 | 87 | * @param array<int, string> $tokens |
89 | 88 | * @param Parser $parser |
90 | 89 | */ |
91 | - public function __construct(string $markup, array &$tokens, Parser $parser) |
|
92 | - { |
|
90 | + public function __construct(string $markup, array &$tokens, Parser $parser) { |
|
93 | 91 | $this->markup = $markup; |
94 | 92 | $this->parser = $parser; |
95 | 93 |
@@ -95,13 +95,13 @@ |
||
95 | 95 | . Token::FILTER_SEPARATOR |
96 | 96 | . '\s*(.*)/m'; |
97 | 97 | $syntaxRegex = '/(' |
98 | - . Token::QUOTED_FRAGMENT |
|
99 | - . ')(.*)/m'; |
|
98 | + . Token::QUOTED_FRAGMENT |
|
99 | + . ')(.*)/m'; |
|
100 | 100 | $filterRegex = '/(?:\s+|' |
101 | - . Token::QUOTED_FRAGMENT |
|
102 | - . '|' |
|
103 | - . Token::FILTER_METHOD_ARGS_SEPARATOR |
|
104 | - . ')+/'; |
|
101 | + . Token::QUOTED_FRAGMENT |
|
102 | + . '|' |
|
103 | + . Token::FILTER_METHOD_ARGS_SEPARATOR |
|
104 | + . ')+/'; |
|
105 | 105 | $filterArgumentsRegex = '/(?:' |
106 | 106 | . Token::FILTER_NAME_ARG_SEPARATOR |
107 | 107 | . '|' |
@@ -55,8 +55,7 @@ discard block |
||
55 | 55 | * Class Variable |
56 | 56 | * @package Platine\Template\Parser |
57 | 57 | */ |
58 | -class Variable |
|
59 | -{ |
|
58 | +class Variable { |
|
60 | 59 | /** |
61 | 60 | * The variable markup |
62 | 61 | * @var string |
@@ -86,8 +85,7 @@ discard block |
||
86 | 85 | * @param string $markup |
87 | 86 | * @param Parser $parser |
88 | 87 | */ |
89 | - public function __construct(string $markup, Parser $parser) |
|
90 | - { |
|
88 | + public function __construct(string $markup, Parser $parser) { |
|
91 | 89 | $this->markup = $markup; |
92 | 90 | $this->parser = $parser; |
93 | 91 | |
@@ -185,8 +183,7 @@ discard block |
||
185 | 183 | * @param Context $context |
186 | 184 | * @return mixed |
187 | 185 | */ |
188 | - public function render(Context $context) |
|
189 | - { |
|
186 | + public function render(Context $context) { |
|
190 | 187 | $output = $context->get($this->name); |
191 | 188 | foreach ($this->filters as $filter) { |
192 | 189 | list($filterName, $filterArgKeys) = $filter; |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | /** |
85 | 85 | * {@inheritdoc} |
86 | - */ |
|
86 | + */ |
|
87 | 87 | public function parse(array &$tokens): void |
88 | 88 | { |
89 | 89 | $startRegex = '/^' . Token::BLOCK_OPEN . '/'; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | |
180 | 180 | /** |
181 | 181 | * {@inheritdoc} |
182 | - */ |
|
182 | + */ |
|
183 | 183 | public function render(Context $context): string |
184 | 184 | { |
185 | 185 | return $this->renderAll($this->nodeList, $context); |
@@ -57,8 +57,7 @@ |
||
57 | 57 | * Class AbstractBlock |
58 | 58 | * @package Platine\Template\Parser |
59 | 59 | */ |
60 | -class AbstractBlock extends AbstractTag |
|
61 | -{ |
|
60 | +class AbstractBlock extends AbstractTag { |
|
62 | 61 | |
63 | 62 | /** |
64 | 63 | * The node list |
@@ -68,9 +68,9 @@ discard block |
||
68 | 68 | protected array $matches = []; |
69 | 69 | |
70 | 70 | /** |
71 | - * Create new instance |
|
72 | - * @param string $pattern |
|
73 | - */ |
|
71 | + * Create new instance |
|
72 | + * @param string $pattern |
|
73 | + */ |
|
74 | 74 | public function __construct(string $pattern) |
75 | 75 | { |
76 | 76 | $this->pattern = (substr($pattern, 0, 1) !== '/') |
@@ -79,10 +79,10 @@ discard block |
||
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
82 | - * Return the array of matches for the given value |
|
83 | - * @param string $value |
|
84 | - * @return array<int|string, array<int|string, mixed>> |
|
85 | - */ |
|
82 | + * Return the array of matches for the given value |
|
83 | + * @param string $value |
|
84 | + * @return array<int|string, array<int|string, mixed>> |
|
85 | + */ |
|
86 | 86 | public function scan(string $value): array |
87 | 87 | { |
88 | 88 | $matches = []; |
@@ -104,20 +104,20 @@ discard block |
||
104 | 104 | } |
105 | 105 | |
106 | 106 | /** |
107 | - * Whether the given value match regex |
|
108 | - * @param string $value |
|
109 | - * @return bool |
|
110 | - */ |
|
107 | + * Whether the given value match regex |
|
108 | + * @param string $value |
|
109 | + * @return bool |
|
110 | + */ |
|
111 | 111 | public function match(string $value): bool |
112 | 112 | { |
113 | 113 | return (bool) preg_match($this->pattern, $value, $this->matches); |
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
117 | - * Whether the given value match all regex |
|
118 | - * @param string $value |
|
119 | - * @return bool |
|
120 | - */ |
|
117 | + * Whether the given value match all regex |
|
118 | + * @param string $value |
|
119 | + * @return bool |
|
120 | + */ |
|
121 | 121 | public function matchAll(string $value): bool |
122 | 122 | { |
123 | 123 | return (bool) preg_match_all($this->pattern, $value, $this->matches); |
@@ -202,10 +202,10 @@ discard block |
||
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
205 | - * Quote the given value in order to use in regex expression |
|
206 | - * @param string $value |
|
207 | - * @return string |
|
208 | - */ |
|
205 | + * Quote the given value in order to use in regex expression |
|
206 | + * @param string $value |
|
207 | + * @return string |
|
208 | + */ |
|
209 | 209 | protected function quote(string $value): string |
210 | 210 | { |
211 | 211 | return preg_quote($value, '/'); |
@@ -53,8 +53,7 @@ discard block |
||
53 | 53 | * Class Lexer |
54 | 54 | * @package Platine\Template\Parser |
55 | 55 | */ |
56 | -class Lexer |
|
57 | -{ |
|
56 | +class Lexer { |
|
58 | 57 | /** |
59 | 58 | * The lexer pattern |
60 | 59 | * @var string |
@@ -71,8 +70,7 @@ discard block |
||
71 | 70 | * Create new instance |
72 | 71 | * @param string $pattern |
73 | 72 | */ |
74 | - public function __construct(string $pattern) |
|
75 | - { |
|
73 | + public function __construct(string $pattern) { |
|
76 | 74 | $this->pattern = (substr($pattern, 0, 1) !== '/') |
77 | 75 | ? '/' . $this->quote($pattern) . '/' |
78 | 76 | : $pattern; |
@@ -150,8 +148,7 @@ discard block |
||
150 | 148 | * @param int $index |
151 | 149 | * @return array<int, mixed> |
152 | 150 | */ |
153 | - public function getArrayMatch(int $index = -1) |
|
154 | - { |
|
151 | + public function getArrayMatch(int $index = -1) { |
|
155 | 152 | if ($index === -1) { |
156 | 153 | return $this->matches; |
157 | 154 | } |
@@ -182,8 +179,7 @@ discard block |
||
182 | 179 | * @param int $index |
183 | 180 | * @return mixed |
184 | 181 | */ |
185 | - public function getMixedMatch(int $index) |
|
186 | - { |
|
182 | + public function getMixedMatch(int $index) { |
|
187 | 183 | if (array_key_exists($index, $this->matches)) { |
188 | 184 | return $this->matches[$index]; |
189 | 185 | } |