Minor fix: Use CamelCase everywhere in CRUD classes

Just a minor improvement: To be consistent with the note in the Yii guide, the created CRUD classes should also use CamelCase in the relations example:

    public function relations()


    {


        return array(


            'author'=>array(self::BELONGS_TO, 'User', 'authorId'),


            'comments'=>array(self::HAS_MANY, 'Comment', 'postId', 'with'=>'author', 'order'=>'createTime DESC'),


            'tags'=>array(self::MANY_MANY, 'Tag', 'postTag(postId, tagId)', 'order'=>'name'),


        );


    }


Thanks.

Really quick, thanks :)

I hope you don't find it too nitpicking … i just post what i find during my first steps in Yii.

Not at all. You are very welcome to point out any bugs or fixes needed. :D

Ok, then i’ll proceed. ;)

I'll not open tickets for small stuff like this, if that's o.k. for you.