Silber\Bouncer\CachedClipboard::refreshAllIteratively PHP Метод

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

Refresh the cache for all roles and users, iteratively.
protected refreshAllIteratively ( ) : void
Результат void
    protected function refreshAllIteratively()
    {
        foreach (Models::user()->all() as $user) {
            $this->refreshFor($user);
        }
        foreach (Models::role()->all() as $role) {
            $this->refreshFor($role);
        }
    }