Embera\Providers::getAll PHP Метод

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

Returns an array with all valid services found.
public getAll ( array | string $urls ) : array
$urls array | string An array with urls or a url string
Результат array
    public function getAll($urls)
    {
        $this->wildCardHosts = array_filter(array_keys($this->services), function ($key) {
            return strpos($key, '*') !== false;
        });
        return $this->findServices((array) $urls);
    }