You are here

public function RefineableCompilerContext::offsetGet in Compiler 1.0.x

File

src/RefineableCompilerContext.php, line 29

Class

RefineableCompilerContext
A refineable compiler context used to define a compilation.

Namespace

Drupal\compiler

Code

public function &offsetGet($offset) {
  if (isset($this->inputs[$offset])) {
    return $this->inputs[$offset];
  }
}