creocoder / yii2-nested-sets

The nested sets behavior for the Yii framework.
Other
446 stars 129 forks source link

Call to undefined method getClass() #8

Closed avevlad closed 10 years ago

avevlad commented 10 years ago
Call to undefined method creocoder\behaviors\NestedSet::getClass()

Модель: https://gist.github.com/AveVlad/9dc542a5873d8295a90c Контроллер: https://gist.github.com/AveVlad/2f694e9cf23e3191270a

avevlad commented 10 years ago

Решил проблему так

public function behaviors() {
    return [
        [
            'class' => 'creocoder\behaviors\NestedSet',
        ],
    ];
}
creocoder commented 10 years ago

@AveVlad Там ошибка в доке небольшая. Вместо getClass() нужно className(). Доку сейчас исправлю.

avevlad commented 10 years ago

Спасибо!