SocialiteProviders\Manager\Helpers\ConfigRetriever::getConfigItems PHP Method

getConfigItems() private method

private getConfigItems ( array $configKeys, Closure $keyRetrievalClosure ) : array
$configKeys array
$keyRetrievalClosure Closure
return array
    private function getConfigItems(array $configKeys, \Closure $keyRetrievalClosure)
    {
        if (count($configKeys) < 1) {
            return [];
        }
        return $this->retrieveItemsFromConfig($configKeys, $keyRetrievalClosure);
    }