Clinner\Command\NullCommand::run PHP Method

run() public method

Run this command and get the exit code for it.
public run ( string $input = null ) : Clinner\Command\CommandInterface
$input string (Optional) input string for this command.
return Clinner\Command\CommandInterface This command, for a fluent API.
    public function run($input = null)
    {
        // Do nothing
        return $this;
    }