Padrão de Estratégia (PHP)
/** * ImportInterface */interface ImportInterface{ /** * Get content * * @return string content */ public function getContent();}/** * ImportOne */class ImportOne implements ImportInterface{ use ImportHelper; /** * @var string …
Continuar lendo