#!/usr/bin/env php description) . PHP_EOL; } return; } $classPath = '\\App\\Command\\' . $argv[1]; if (class_exists($classPath)) { $trigger = new $classPath($argv); $trigger->boot(); } else { echo 'Unable to load class: ' . $classPath . PHP_EOL; }