Skip to content

Instantly share code, notes, and snippets.

@zombor
Created August 12, 2012 15:35
Show Gist options
  • Save zombor/3332317 to your computer and use it in GitHub Desktop.
Save zombor/3332317 to your computer and use it in GitHub Desktop.
<?php
class Arden_Repository_Users extends Arden_Repository_KohanaDatabase
{
protected $_model_class = 'Model_User';
protected $_table_name = 'users';
public function find_users()
{
return $this->load_set([]);
}
public function find_user($id)
{
return $this->load_object(['id' => $id]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment