Skip to content

Instantly share code, notes, and snippets.

@carlosbelisario
Created September 26, 2014 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlosbelisario/9c4c5ea4bc4219bdc90a to your computer and use it in GitHub Desktop.
Save carlosbelisario/9c4c5ea4bc4219bdc90a to your computer and use it in GitHub Desktop.
<?php
interface Driver
{
// lo comun que tienen los driver
public function crearBd();
}
class Mysql implements Driver
{
//implementas tus métodos
public function crearBd()
{
//implementa tu metodo
}
}
class Sql
{
public function crearBd(Driver $motor)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment