for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPKitchen\Platform\Exception\CLI;
use PHPKitchen\Platform\Exception\Common\UserException;
use PHPKitchen\Platform\Exception\Mixin\StaticConstructors;
/**
* Represents
*
* @author Dmitry Kolodko <[email protected]>
* @since 1.0
*/
class UnknownCommandException extends UserException {
use StaticConstructors;
public function getName() {
return 'Unknown Command';
}