ec2dns\ec2::getNext PHP Метод

getNext() публичный Метод

This method returns the found instances.
public getNext ( ) : array
Результат array $instance
    function getNext()
    {
        if (!$this->instances) {
            $this->getInstances();
        }
        $this->instances->next();
        return $this->instances->current();
    }