Почему у меня не работает функция MIN()?
private $arrayNewRobot = [];
public function __debugInfo()
{
$this->arrayNewRobot['speed'] = min($this->arrayNewRobot['speed']);
return $this->arrayNewRobot;
}
public function addRobot($robotType)
{
foreach($robotType as $item)
{
$this->arrayNewRobot['speed'] = $item->getSpeed();
$this->arrayNewRobot['height'] += $item->getHeight();
$this->arrayNewRobot['weight'] += $item->getWeight();
}
}
На выходе:
object(MergeRobot)#4 (3) {
["speed"]=>
NULL
["height"]=>
int(4)
["weight"]=>
int(825)
}
Как подсчитать минимальное число
$this->arrayNewRobot['speed']
?