Skip to content

Instantly share code, notes, and snippets.

View Anamican's full-sized avatar

Madhukumaar T R Anamican

View GitHub Profile
@Anamican
Anamican / sorting.php
Created June 10, 2019 09:01
Strategy Design Pattern - PHP - Sorting Example
<?php
// This can reduce lot of type errors
declare(strict_types=1);
/**
* Strategy - Defines an interface common to all algorithms
* @param array $products
*
* @return array