Inheritance: extends CompilerUtils
Example #1
0
 protected function handleCodePhp($input, $name = '')
 {
     $handler = new CodeHandler($input, $name);
     return $handler->parse();
 }
Example #2
0
 /**
  * @param        $input
  * @param string $name
  *
  * @throws \ErrorException
  *
  * @return array
  */
 public function handleCode($input, $name = '')
 {
     $handler = new CodeHandler($input, $name);
     return $handler->parse();
 }