It would be nice to pass conditions to the get. Like if I wanted to get the latest created user: ``` Phactory::get('user', array('name' => 'testuser'), array( 'order' => 'id DESC', 'limit' => 1, ); ```