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
{{ message }}
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
Declaration of Baloot\Models\Province::sluggable() must be compatible with Cviebrock\EloquentSluggable\Sluggable::sluggable(): array
37▕ * @codeCoverageIgnore
38▕ *
39▕ * @return array
40▕ */
➜ 41▕ public function sluggable()
42▕ {
43▕ return ['slug' => ['source' => 'name']];
44▕ }
45▕ }
in both city and province model in declaration of sluggable methods, array type didn't specify as an return type which will be solved by using sluggable(): array instead of sluggable()
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Declaration of Baloot\Models\Province::sluggable() must be compatible with Cviebrock\EloquentSluggable\Sluggable::sluggable(): array
37▕ * @codeCoverageIgnore
38▕ *
39▕ * @return array
40▕ */
➜ 41▕ public function sluggable()
42▕ {
43▕ return ['slug' => ['source' => 'name']];
44▕ }
45▕ }
in both city and province model in declaration of sluggable methods, array type didn't specify as an return type which will be solved by using sluggable(): array instead of sluggable()
The text was updated successfully, but these errors were encountered: