countryCollection = $countryCollection; } /** * Return options array * * @return array */ public function toOptionArray() { if (!$this->options) { $this->options = $this->countryCollection->toOptionArrayISO3(); array_unshift($this->options, ['value' => '', 'label' => __('--Please Select--')]); } return $this->options; } }