public function Pagar()
 {
     $this->Valor = $this->Valor / 100 * 100 - $this->Desconto;
     parent::Pagar();
 }
 function __construct($Produto, $Valor)
 {
     parent::__construct($Produto, $Valor);
     $this->Juros = 1.17;
     $this->Metodo = 'Cartão de Crédito';
 }
<!DOCTYPE html>
<html lang="pt-br">
    <head>
        <meta charset="UTF-8">
        <title>WS PHP - Conceitos de Polimorfismo.</title>
    </head>
    <body>
        <?php 
require './inc/Config.inc.php';
$boleto = new Polimorfismo('Pro PHP', '334.90');
$boleto->Pagar();
var_dump($boleto);
echo '<hr>';
?>
    </body>
</html>