public function Twig_TokenParser_For::decideForFork

File

drupal/core/vendor/twig/twig/lib/Twig/TokenParser/For.php, line 70

Class

Twig_TokenParser_For
Loops over each item of a sequence.

Code

public function decideForFork(Twig_Token $token) {
  return $token
    ->test(array(
    'else',
    'endfor',
  ));
}