skip to Main Content

I am running on my laravel project

php artisan serve

but show error

During inheritance of ArrayAccess Uncaught ErrorException: Return type of IlluminateSupportCollection

Please help me

How to i can resolved this problem

2

Answers


  1. This error usually occurs due to a PHP version mismatch. If you’re seeing this error, it’s likely because your PHP version is lower than the version required by Laravel.

    Login or Signup to reply.
  2. change  the function return type
    public funciton phpDemo():void{
    //
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search