Files
register/marko_unpacked/marko/portal/models/CollectionsObjects.php
T
Admin Nasledstvo ac168868ee Initial import
2026-05-01 20:52:04 +03:00

19 lines
385 B
PHP

<?php
namespace app\models;
/**
* Class CollectionsObjects
* @package app\models
* @property $id
* @property $object_id
* @property $collection_id
* @property $category_id
* @property Collections $collection
*/
class CollectionsObjects extends _Base {
public function getCollection() {
return $this->hasOne(Collections::class, ['id' => 'collection_id']);
}
}