JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrFILE ON : __fa2c92/index.php gilour
<?php namespace Sentry\Laravel\Integration\ModelViolations; use Exception; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\LazyLoadingViolationException; class LazyLoadingModelViolationReporter extends ModelViolationReporter { protected function shouldReport(Model $model, string $property): bool { // Laravel uses these checks itself to not throw an exception if the model doesn't exist or was just created // See: https://github.com/laravel/framework/blob/438d02d3a891ab4d73ffea2c223b5d37947b5e93/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php#L559-L561 if (!$model->exists || $model->wasRecentlyCreated) { return false; } return parent::shouldReport($model, $property); } protected function getViolationContext(Model $model, string $property): array { return [ 'relation' => $property, 'kind' => 'lazy_loading', ]; } protected function getViolationException(Model $model, string $property): Exception { return new LazyLoadingViolationException($model, $property); } }