median() public method

Get the median of a given key.
public median ( null $key = null ) : mixed | null
$key null
return mixed | null
 public function testMedianOnEmptyCollectionReturnsNull()
 {
     $collection = new Collection();
     $this->assertNull($collection->median());
 }