function volume(int $width, int $height, int $depth = 1) { return $width * $height * $depth; } $v = volume(height: 3, width: 10,);