mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
Check if CastsAttributes exists
This commit is contained in:
@@ -955,7 +955,7 @@ class ModelsCommand extends Command
|
||||
*/
|
||||
protected function checkForCustomLaravelCasts(string $type): ?string
|
||||
{
|
||||
if (!class_exists($type)) {
|
||||
if (!class_exists($type) || !interface_exists(CastsAttributes::class)) {
|
||||
return $type;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user