You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this package compatible with Laravel 11? I'm receiving a fatal error for an incompatible $builder property defined in my User model.
PHP Fatal error: Illuminate\Database\Eloquent\Model and Spinen\ClickUp\Concerns\HasClickUp define the same property ($builder) in the composition of App\Models\User. However, the definition differs and is considered incompatible.
The HasClickUp trait defines: protected ?Builder $builder = null;..
But the Eloquent Model defines: protected static string $builder = Builder::class;...
Any clarity on what to do here would be much appreciated.
The text was updated successfully, but these errors were encountered:
cedrictwillie
changed the title
Laravel 11: incom
Laravel 11: incompatible $builder property
Nov 18, 2024
Is this package compatible with Laravel 11? I'm receiving a fatal error for an incompatible
$builder
property defined in my User model.The
HasClickUp
trait defines:protected ?Builder $builder = null;
..But the Eloquent
Model
defines:protected static string $builder = Builder::class;
...Any clarity on what to do here would be much appreciated.
The text was updated successfully, but these errors were encountered: