Revision #12 was created by softark on Mar 24, 2018, 12:38:30 AM.
fixed typo in a sample code
Yii version
2.0
Content
[...]
### PostWithCategories model
And the last one is extended from Post. It has an additional attribute called 'category_ids' that will be used to handle the categories of the post. Note that **'category_ids' attribute is an array** of category ids.
```php
class PostWithCategories extends Post
{
[...]
We want to add a small utility method to Category model.