OwenIt\Auditing\AuditorManager::auditReview PHP Method

auditReview() protected method

Review audit and determines if the entity can be audited.
protected auditReview ( OwenIt\Auditing\Contracts\Auditable $model, string $auditor ) : boolean
$model OwenIt\Auditing\Contracts\Auditable
$auditor string
return boolean
    protected function auditReview(Auditable $model, $auditor)
    {
        return $this->app->make('events')->until(new Events\AuditReview($model, $auditor)) !== false;
    }