EDIT: Figured out where I was going wrong and placed an answer at the end
I\'m trying to create a Laravel Command, I can see it\'s changed considerably from \"tasks\" in
try this.
protected function getArguments() { return []; } protected function getOptions() { return []; }
also add this in /app/start/artisan.php
/app/start/artisan.php
Artisan::add(new ParseCommand);
then Run Command on Root directory
./artisan command:import;