think\console\Output::__construct PHP Method

__construct() public method

public __construct ( $driver = 'console' )
    public function __construct($driver = 'console')
    {
        $class = '\\think\\console\\output\\driver\\' . ucwords($driver);
        $this->handle = new $class($this);
    }