Store _id in model by default
This commit is contained in:
parent
6eb7e80dd3
commit
f4a291a40e
|
@ -13,6 +13,7 @@ class ArangoModel extends \yii\base\model {
|
|||
|
||||
private $_doc = null;
|
||||
|
||||
public $_id = null;
|
||||
|
||||
public static function findById($id)
|
||||
{
|
||||
|
@ -33,6 +34,10 @@ class ArangoModel extends \yii\base\model {
|
|||
return $model;
|
||||
}
|
||||
|
||||
public function getAttributes($names=null, $except=['_id']){
|
||||
return parent::getAttributes($names, $except);
|
||||
}
|
||||
|
||||
/**
|
||||
* @todo функция должна возвращать true/false в зависимости от результата
|
||||
* Но аранга возвращает различный тип данных. Надо написать код
|
||||
|
|
Loading…
Reference in New Issue