There is no different, Usually brackets used to grouping the calculation and get final value..

Instead of,

$amount = $price - $discount; return $amount;

You can use,

return ($price - $discount);

But in your case, $row is an Array. Array is a single element, So no need brackets..