Flow\Node::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $line )
    public function __construct($line)
    {
        $this->line = $line;
    }

Usage Example

예제 #1
0
파일: MacroNode.php 프로젝트: nramenta/flow
 public function __construct($name, $args, $body, $line)
 {
     parent::__construct($line);
     $this->name = $name;
     $this->args = $args;
     $this->body = $body;
 }
All Usage Examples Of Flow\Node::__construct