コード例 #1
0
 /**
  * @param string $path
  */
 public function __construct($path)
 {
     $this->path = $path;
     parent::__construct();
 }
コード例 #2
0
 /**
  * @param Context $parent
  * @param array   $token
  */
 public function __construct(array $token, Context $parent)
 {
     parent::__construct($token, $parent);
     $this->name = rtrim(rtrim(trim($token[Lexer::VALUE]), '('));
 }