Skip to content

Instantly share code, notes, and snippets.

Created March 24, 2013 21:34
Show Gist options
  • Save anonymous/5233640 to your computer and use it in GitHub Desktop.
Save anonymous/5233640 to your computer and use it in GitHub Desktop.
<?php
namespace MVCBP\Repositories;
use MVCBP\Core as Core;
class UserRepository extends Core\PDOMySQL implements Core\RepositoryInterface
{
public function Add($user)
{
}
public function Find($userId)
{
}
public function Edit($user)
{
}
public function Remove($user)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment