feday2/sort

sort array desc and asc

Maintainers

Details

github.com/feday2/Sort

Source

Issues

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/feday2/sort

v1.0.1 2019-10-21 12:13 UTC

This package is auto-updated.

Last update: 2025-12-22 02:22:30 UTC


README

Sort array using Strategy Pattern

Installation

$ composer require feday2/sort

Usage

<?php

use Feday2\Sort\{Sorted, SortDesc};

...

$sortType = new SortDesc();
$sorter =  new Sorter($sortType);
$sortedArray = $sorter->sort($array);