Auth_Yadis_Manager::nextService PHP Метод

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

$this->current() will continue to return that service until the next call to this method.
public nextService ( )
    function nextService()
    {
        if ($this->services) {
            $this->_current = array_shift($this->services);
        } else {
            $this->_current = null;
        }
        return $this->_current;
    }