This error is appearing to me and I can not understand why. The line of code is as follows: $matrix(0, $key)=$quantidade['id_product'];
The full function is as follows:
public function sumQuantidadesPorProduto() {
$quantidades = $this->getAllQuantidadesLocais();
$sum = 0;
$matrix = array();
foreach ($quantidades as $key => $quantidade) {
$sum+=intval($quantidade['quantidade']);
$matrix(0, $key) = $quantidade['id_product'];
$matrix(1, $key) = $sum;
}
return $matrix;
}