PHPDaemon\Applications\CGIRequest::run PHP Method

run() public method

Called when request iterated.
public run ( ) : void
return void
    public function run()
    {
        if (!$this->proc) {
            $this->out('Couldn\'t execute CGI proccess.');
            $this->finish();
            return;
        }
        if (!$this->proc->eof()) {
            $this->sleep();
        }
    }