コード例 #1
0
ファイル: ActiveRecord.php プロジェクト: yiisoft/yii2-mongodb
 /**
  * @inheritdoc
  */
 public function toArray(array $fields = [], array $expand = [], $recursive = true)
 {
     $data = parent::toArray($fields, $expand, false);
     if (!$recursive) {
         return $data;
     }
     return $this->toArrayInternal($data);
 }