@@ -118,7 +118,7 @@ public function supports($name)
118118 /**
119119 * Evaluates a template.
120120 *
121- * @return string|false The evaluated template, or false if the engine is unable to render the template
121+ * @return string|false
122122 *
123123 * @throws \InvalidArgumentException
124124 */
@@ -167,7 +167,7 @@ protected function evaluate(Storage $template, array $parameters = [])
167167 *
168168 * @param string $name The helper name
169169 *
170- * @return HelperInterface The helper value
170+ * @return HelperInterface
171171 *
172172 * @throws \InvalidArgumentException if the helper is not defined
173173 */
@@ -182,7 +182,7 @@ public function offsetGet($name)
182182 *
183183 * @param string $name The helper name
184184 *
185- * @return bool true if the helper is defined, false otherwise
185+ * @return bool
186186 */
187187 #[\ReturnTypeWillChange]
188188 public function offsetExists ($ name )
@@ -255,7 +255,7 @@ public function set(HelperInterface $helper, string $alias = null)
255255 /**
256256 * Returns true if the helper if defined.
257257 *
258- * @return bool true if the helper is defined, false otherwise
258+ * @return bool
259259 */
260260 public function has (string $ name )
261261 {
@@ -291,7 +291,7 @@ public function extend(string $template)
291291 *
292292 * @param mixed $value A variable to escape
293293 *
294- * @return mixed The escaped value
294+ * @return mixed
295295 */
296296 public function escape ($ value , string $ context = 'html ' )
297297 {
@@ -330,7 +330,7 @@ public function setCharset(string $charset)
330330 /**
331331 * Gets the current charset.
332332 *
333- * @return string The current charset
333+ * @return string
334334 */
335335 public function getCharset ()
336336 {
@@ -349,7 +349,7 @@ public function setEscaper(string $context, callable $escaper)
349349 /**
350350 * Gets an escaper for a given context.
351351 *
352- * @return callable A PHP callable
352+ * @return callable
353353 *
354354 * @throws \InvalidArgumentException
355355 */
@@ -408,7 +408,7 @@ protected function initializeEscapers()
408408 *
409409 * @param string $value The value to escape
410410 *
411- * @return string the escaped value
411+ * @return string
412412 */
413413 function ($ value ) use ($ flags ) {
414414 // Numbers and Boolean values get turned into strings which can cause problems
@@ -423,7 +423,7 @@ function ($value) use ($flags) {
423423 *
424424 * @param string $value The value to escape
425425 *
426- * @return string the escaped value
426+ * @return string
427427 */
428428 function ($ value ) {
429429 if ('UTF-8 ' != $ this ->getCharset ()) {
0 commit comments