Last active
June 20, 2018 15:51
-
-
Save proclnas/f586b4c69f4a80b654b462e4b2864608 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Exemplo de refatoraço | |
interface Style {} | |
interface PptStyle extends Style {} | |
interface PdfStyle extends Style {} | |
class Style { | |
// Propriedades | |
} | |
class Ppt { | |
public function __construct(Style $style) {} | |
} | |
// Exemplo | |
$style = new Style; | |
$ppt = (new Ppt($style))->genPPt(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment