-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ErrorException Array Offset #27
Comments
Just for reference, what class is your command extending? This sounds like the |
"laravel/framework": "^8.12", |
Does it extend I'll see if I can replicate this later. 👍🏻 |
yes i am extending this class, still error |
I was unable to replicate this issue with Laravel 8 and a default command that just contains: class NotifyCommand extends Command
{
protected $signature = 'notify';
public function handle()
{
$this->notify('Hello Web Artisan', 'Love beautiful code? We do too!');
}
} @nunomaduro, any ideas on this? 🤔 |
I ran into the same issue. The reason was I used it the |
The text was updated successfully, but these errors were encountered: