php - Laravel Artisan CLI doesn't execute commands -


the problem i'm facing laravel's (v4.2) artisan cli when try execute command (for instance php artisan list) command doesn't work , instead contents of illuminate\foundation\application object in command window.

screenshot

you're question vauge. if you're asking how add custom commands laravel's artisan, missing last step.

if have created command via:

php artisan command:make customcommand --command=custom:command 

then last step need register command:

artisan::add(new customcommand); 

Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -