Respect\Validation\Rules\CountryCode::getCountryCodeList PHP Method

getCountryCodeList() private method

private getCountryCodeList ( $index )
    private function getCountryCodeList($index)
    {
        $countryList = [];
        foreach ($this->countryCodeList as $country) {
            $countryList[] = $country[$index];
        }
        return $countryList;
    }