コード例 #1
0
ファイル: Math.php プロジェクト: krishnaguragain/math
 /**
  * Returns the highest value in the array of numbers.
  *
  * @param  array $numbers
  * @return number
  */
 public function max(array $numbers)
 {
     return $this->executionEngine->max($numbers);
 }