Files
DesignPatternsPHP/Behavioral/Strategy/index.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

22 lines
390 B
PHP

<?php
namespace DesignPatterns\Strategy;
$elements = array(
array(
'id' => 2,
'date' => '2011-01-01',
),
array(
'id' => 1,
'date' => '2011-02-01'
)
);
$collection = new ObjectCollection($elements);
$collection->setComparator(new IdComparator());
$collection->sort();
$collection->setComparator(new DateComparator());
$collection->sort();