isLocalVariable() public method

public isLocalVariable ( Block $block, $name )
$block Block
Beispiel #1
0
 private function readVariableName($name, Block $block)
 {
     if ($this->ctx->isLocalVariable($block, $name)) {
         return $this->ctx->scope[$block][$name];
     }
     return $this->readVariableRecursive($name, $block);
 }