Flow\Node::__construct PHP Method

__construct() public method

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

Usage Example

Exemplo n.º 1
0
 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