mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57: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
|
protected function checkForCustomLaravelCasts(string $type): ?string
|
||||||
{
|
{
|
||||||
if (!class_exists($type)) {
|
if (!class_exists($type) || !interface_exists(CastsAttributes::class)) {
|
||||||
return $type;
|
return $type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user