Fitztrev\QueryTracer\Scopes\QueryTracer::apply PHP Méthode

apply() public méthode

public apply ( Builder $builder, Model $model )
$builder Illuminate\Database\Eloquent\Builder
$model Illuminate\Database\Eloquent\Model
    public function apply(Builder $builder, Model $model)
    {
        if (!$this->isEnabled($model)) {
            return;
        }
        $traces = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
        foreach ($traces as $trace) {
            // Find the first non-vendor-dir file in the backtrace
            if (isset($trace['file']) && !str_contains($trace['file'], DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR)) {
                $file = '"query.file" <> "' . $trace['file'] . '"';
                $line = '"query.line" <> "' . $trace['line'] . '"';
                return $builder->whereRaw($file)->whereRaw($line);
            }
        }
    }