lithium\console\Response::__destruct PHP 메소드

__destruct() 공개 메소드

Destructor. Closes streams.
public __destruct ( ) : void
리턴 void
    public function __destruct()
    {
        if ($this->output) {
            fclose($this->output);
        }
        if ($this->error) {
            fclose($this->error);
        }
    }