teepluss / laravel-theme

Theme and asset managing for laravel
MIT License
546 stars 132 forks source link

php artisan theme:create default error #153

Open altdev91 opened 6 years ago

altdev91 commented 6 years ago

When I run php artisan theme:create default

ReflectionException : Method Teepluss\Theme\Commands\ThemeGeneratorCommand::handle() does not exist at D:\xampp\htdocs\tailieu24h\vendor\laravel\framework\src\Illuminate\Container\BoundMethod.php:135

https://1.bp.blogspot.com/-mQiK0R8NDV8/W6cE1H6GosI/AAAAAAAAMwE/1kUj1mDdvYcAO7F02ZpLMJk5tFAClonPgCLcBGAs/s1600/error1.png

DeveloperOnCall commented 6 years ago

You can fix this by changing the method...


   fire()

to


   handle()

Find it on line -60 in the file...


    Teepluss\Theme\Commands\ThemeGeneratorCommand