Scalr\Model\Collections\SettingsCollection::getArrayCopy PHP Méthode

getArrayCopy() public méthode

Get array copy
public getArrayCopy ( ) : array
Résultat array A copy of the array, or array of public properties if ArrayIterator refers to an object.
    public function getArrayCopy()
    {
        if (!$this->loaded) {
            $this->load();
        }
        return $this->data;
    }