Caffeinated\Modules\Contracts\Repository::sortByDesc PHP Method

sortByDesc() public method

Sort modules by given key in ascending order.
public sortByDesc ( string $key ) : Collection
$key string
return Collection
    public function sortByDesc($key);

Usage Example

Beispiel #1
0
 /**
  * Sort modules by given key in ascending order.
  *
  * @param string $key
  *
  * @return Collection
  */
 public function sortByDesc($key)
 {
     return $this->repository->sortByDesc($key);
 }