How can I fix the error "Undefined array key 1" on Laravel

Viewed 63

When I run php artisan serve command I get the following errors

PHP 8.1.5
Composer version 2.4.2
Laravel Framework 9.31.0

   WARN  [F.


   ErrorException

  Undefined array key 1

  at C:\OpenServer\domains\chorva\vendor\laravel\framework\src\Illuminate\Foundation\Console\ServeCommand.php:308
    304▕             : '/^\[([^\]]+)\]/';
    305▕
    306▕         preg_match($regex, $line, $matches);
    307▕
  ➜ 308▕         return Carbon::createFromFormat('D M d H:i:s Y', $matches[1]);
    309▕     }
    310▕
    311▕     /**
    312▕      * Get the request port from the given PHP server output.

  1   C:\OpenServer\domains\chorva\vendor\laravel\framework\src\Illuminate\Foundation\Console\ServeCommand.php:308
      Illuminate\Foundation\Bootstrap\HandleExceptions::Illuminate\Foundation\Bootstrap\{closure}()

  2   C:\OpenServer\domains\chorva\vendor\laravel\framework\src\Illuminate\Foundation\Console\ServeCommand.php:254
      Illuminate\Foundation\Console\ServeCommand::getDateFromLine()
1 Answers
Related