You are here

public function Twig_Environment::isAutoReload in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/lib/Twig/Environment.php \Twig_Environment::isAutoReload()

Checks if the auto_reload option is enabled.

Return value

bool true if auto_reload is enabled, false otherwise

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

File

vendor/twig/twig/lib/Twig/Environment.php, line 207

Class

Twig_Environment
Stores the Twig configuration.

Code

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