1: <?php
2: /**
3: * Manufacturer AR model.
4: *
5: * @property integer $id
6: * @property string $title
7: * @property string $internalCode
8: * @property integer $createdByUserId
9: *
10: * @property Product[] $products Products belonging to manufacturer (has-many relation)
11: *
12: * @package Internals.AR
13: * @author Konstantinos Filios <konfilios@gmail.com>
14: */
15: class Manufacturer extends CActiveRecord
16: {
17: // Implementation has been skipped. Class level doc-comments are all we need for the demo.
18: }