CloudConvert\Process::wait PHP Method

wait() public method

Waits for the Process to finish (or end with an error)
public wait ( ) : Process
return Process
    public function wait()
    {
        if ($this->step == 'finished' || $this->step == 'error') {
            return $this;
        }
        return $this->refresh(['wait' => 'true']);
    }