Inheritance: extends CompilerUtils
示例#1
0
 protected function handleCodePhp($input, $name = '')
 {
     $handler = new CodeHandler($input, $name);
     return $handler->parse();
 }
示例#2
0
文件: Compiler.php 项目: XaBerr/JUICE
 /**
  * @param        $input
  * @param string $name
  *
  * @throws \ErrorException
  *
  * @return array
  */
 public function handleCode($input, $name = '')
 {
     $handler = new CodeHandler($input, $name);
     return $handler->parse();
 }