JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrFILE ON : __6a5acf/index.php gilour
<?php namespace Sentry\Laravel\Integration\ModelViolations; use Exception; use Illuminate\Database\Eloquent\MassAssignmentException; use Illuminate\Database\Eloquent\Model; class DiscardedAttributeViolationReporter extends ModelViolationReporter { protected function getViolationContext(Model $model, string $property): array { return [ 'attribute' => $property, 'kind' => 'discarded_attribute', ]; } protected function getViolationException(Model $model, string $property): Exception { return new MassAssignmentException(sprintf( 'Add [%s] to fillable property to allow mass assignment on [%s].', $property, get_class($model) )); } }