Laravel\Envoy\TaskContainer::getServers PHP Метод

getServers() защищенный Метод

Get the IP addresses of the servers specified on the options.
protected getServers ( array $options ) : array
$options array
Результат array
    protected function getServers(array $options)
    {
        if (!array_key_exists('on', $options)) {
            $options['on'] = [];
        }
        return array_flatten(array_map(function ($name) {
            return $this->getServer($name);
        }, (array) $options['on']));
    }