Clinner\Command\NullCommand::getExitCode PHP Method

getExitCode() public method

This method will only return a valid value after the command has been executed.
public getExitCode ( ) : integer
return integer
    public function getExitCode()
    {
        // Null commands are always successful, aren't they?
        return 0;
    }