for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yarak\Exceptions;
use Exception;
class InvalidCommand extends Exception
{
/**
* User defined command does not extend parent command.
*
* @return static
*/
public static function doesntExtendCommand()
return new static('User defined commands must extend Yarak\Console\Command.');
}