HippoPHP\Hippo\HippoTextUIContext::buildArgMappings PHP Method

buildArgMappings() private method

private buildArgMappings ( ) : array
return array
    private function buildArgMappings()
    {
        return [$this->createArgMapping([$this, 'handleHelpArgument'], ['h', 'help']), $this->createArgMapping([$this, 'handleVersionArgument'], ['v', 'version']), $this->createArgMapping([$this, 'handleStrictArgument'], ['s', 'strict']), $this->createArgMapping([$this, 'handleLogArgument'], ['l', 'log']), $this->createArgMapping([$this, 'handleVerboseArgument'], ['verbose']), $this->createArgMapping([$this, 'handleQuietArgument'], ['q', 'quiet']), $this->createArgMapping([$this, 'handleXmlReportArgument'], ['report-xml']), $this->createArgMapping([$this, 'handleConfigArgument'], ['c', 'config'])];
    }