Boa noite, estou tendo o seguinte erro
Fatal error: Interface 'Imposto' not found in C:\xampp\htdocs\Design-Patterns\ICMS.php on line 3
<?php
interface Imposto {
public function calcula(Orcamento $orcamento);
}
?>insira seu código aqui
<?php
class ICMS implements Imposto {
public function calcula(Orcamento $orcamento) {
return $orcamento->getValor() * 0.05;
}
}
?>