Pantheon\Terminus\Models\Backup::backupIsFinished PHP Method

backupIsFinished() public method

Determines whether the backup has been completed or not
public backupIsFinished ( ) : boolean
return boolean True if backup is completed.
    public function backupIsFinished()
    {
        return $this->get('size') != 0 && ($this->get('finish_time') != null || $this->get('timestamp') != null);
    }