Skip to content

Instantly share code, notes, and snippets.

@proclnas
Last active June 20, 2018 15:51
Show Gist options
  • Save proclnas/f586b4c69f4a80b654b462e4b2864608 to your computer and use it in GitHub Desktop.
Save proclnas/f586b4c69f4a80b654b462e4b2864608 to your computer and use it in GitHub Desktop.
<?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