public function Twig_Environment::isAutoReload

Checks if the auto_reload option is enabled.

Return value

Boolean true if auto_reload is enabled, false otherwise

1 call to Twig_Environment::isAutoReload()
Twig_Environment::loadTemplate in drupal/core/vendor/twig/twig/lib/Twig/Environment.php
Loads a template by name.

File

drupal/core/vendor/twig/twig/lib/Twig/Environment.php, line 192

Class

Twig_Environment
Stores the Twig configuration.

Code

public function isAutoReload() {
  return $this->autoReload;
}