CraftCli\Support\MysqlCommand::getArguments PHP Method

getArguments() protected method

protected getArguments ( )
    protected function getArguments()
    {
        $arguments = parent::getArguments();
        if ($this->query) {
            $arguments[] = '-e ' . escapeshellarg($this->query);
        }
        return $arguments;
    }
MysqlCommand