mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-22 13:42:44 +00:00
Replace return; yield with yield from []
This has the same effect, but looks less hacky and makes PHPStan happy. https://phpstan.org/r/df7fcc88-1df8-428e-b675-5dc6965c34d6 Previously this was needed to work properly with output capturing.
This commit is contained in:
@@ -103,7 +103,7 @@ class __TwigTemplate_%x extends Template
|
||||
\$macros = \$this->macros;
|
||||
// line 1
|
||||
yield "foo";
|
||||
return; yield '';
|
||||
yield from [];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user