Caffeinated\Modules\Repositories\LocalRepository::sortByDesc PHP Метод

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

Sort modules by given key in ascending order.
public sortByDesc ( string $key ) : Collection
$key string
Результат Collection
    public function sortByDesc($key)
    {
        $collection = $this->all();
        return $collection->sortByDesc($key);
    }