PHPCfg\Op\Stmt\Class_::__construct PHP Method

__construct() public method

public __construct ( $name, $type, $extends, array $implements, Block $stmts, array $attributes = [] )
$implements array
$stmts PHPCfg\Block
$attributes array
    public function __construct($name, $type, $extends, array $implements, Block $stmts, array $attributes = [])
    {
        parent::__construct($name, $stmts, $attributes);
        $this->type = $type;
        $this->extends = $extends;
        $this->implements = $implements;
    }