Home
last modified time | relevance | path

Searched refs:strictCallables (Results 1 – 3 of 3) sorted by last modified time

/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php28 private $strictCallables; variable in Mustache_Compiler
38 * @param bool $strictCallables (default: false)
43 …rce, array $tree, $name, $customEscape = false, $charset = 'UTF-8', $strictCallables = false, $ent… argument
53 $this->strictCallables = $strictCallables;
232 $callable = $this->strictCallables ? $this->prepare(self::STRICT_CALLABLE) : '';
670 $tpl = $this->strictCallables ? self::STRICT_IS_CALLABLE : self::IS_CALLABLE;
H A DEngine.php55 private $strictCallables = false; variable in Mustache_Engine
204 $this->strictCallables = $options['strict_callables'];
633 'strictCallables' => $this->strictCallables,
813 …($source, $tree, $name, isset($this->escape), $this->charset, $this->strictCallables, $this->entit…
H A DTemplate.php27 protected $strictCallables = false; variable in Mustache_Template
172 … if (($this->strictCallables ? is_object($value) : !is_string($value)) && is_callable($value)) {