<?php class Articulo { public function __construct( public readonly string $id, private string $nombre, private float $precioBase ) {} public function getNombre(): string { return $this->nombre; } public function getPrecio(): float { return $this->precioBase; } public function modificarPrecio(float $nuevoPrecio): void { if ($nuevoPrecio <= 0) { throw new Exception("Error: El nuevo precio debe ser mayor a 0."); } $this->precioBase = $nuevoPrecio; } }
You have javascript disabled. You will not be able to edit any code.