Browse Source

added TODO for class methods

master
Anton Grebnev 13 years ago
parent
commit
d360e7c023
  1. 6
      model/MongoModel.php

6
model/MongoModel.php

@ -28,6 +28,9 @@ abstract class MongoModel extends Model
return $this->db->delete($this->table(), array('_id' => $id));
}
/**
* @TODO: check for limits (if just one record needed)
*/
protected function fetchField($data, $params = array(), $field, $cache_key = null)
{
if (!$cache_key || !$result = $cache_key->get()) {
@ -39,6 +42,9 @@ abstract class MongoModel extends Model
return $result;
}
/**
* @TODO: check for limits (if just one record needed)
*/
protected function fetch($data, $params = array(), $cache_key = null)
{
if (!$cache_key || !$result = $cache_key->get()) {

Loading…
Cancel
Save