Skip to content

Instantly share code, notes, and snippets.

@JuanLuisGarciaBorrego
Created July 5, 2015 15:59
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 JuanLuisGarciaBorrego/6acd064b33803a5a167a to your computer and use it in GitHub Desktop.
Save JuanLuisGarciaBorrego/6acd064b33803a5a167a to your computer and use it in GitHub Desktop.
ArticleRepository 2 interfaces
class ArticleRepository implements CRUInterface, DeleteInterface
{
public function insert($data)
{
//acción insert en BD
}
public function update($data)
{
//acción update en BD
}
public function delete($data){
//acción delete en BD
}
public function findAll($data)
{
//Muestra toda las filas de la tabla en BD
}
public function findById($data)
{
//Busca la fila que tenga el id x
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment