Skip to content

Instantly share code, notes, and snippets.

@alanwillms
Last active August 29, 2015 14:25
Show Gist options
  • Save alanwillms/8acac68b409c40eefe47 to your computer and use it in GitHub Desktop.
Save alanwillms/8acac68b409c40eefe47 to your computer and use it in GitHub Desktop.
Open/Closed Principle EXAMPLE
<?php
class ProdutoExportado extends Produto
{
...
public function getValorImpostos()
{
return parent::getValorImpostos() + $this->getValorIE();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment