PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
spatie
/
laravel-activitylog
/
src
/
Exceptions
<?php namespace Spatie\Activitylog\Exceptions; use Exception; use Illuminate\Database\Eloquent\Model; use Spatie\Activitylog\Contracts\Activity; class InvalidConfiguration extends Exception { public static function modelIsNotValid(string $className): self { return new static("The given model class `{$className}` does not implement `".Activity::class.'` or it does not extend `'.Model::class.'`'); } }
[+]
..
[-] CouldNotLogChanges.php
[edit]
[-] InvalidConfiguration.php
[edit]
[-] CouldNotLogActivity.php
[edit]