Newer
Older
<?php
/**
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
*
* @package amos-report
* @category Model
* @author Elite Division S.r.l.
*/
use arter\amos\notificationmanager\behaviors\NotifyBehavior;
{
/**
* @see \yii\db\BaseActiveRecord::init() for more info.
*/
public function init()
{
parent::init();
}
public function afterFind()
{
parent::afterFind();
}
/**
* @see \yii\base\Component::behaviors() for more info.
*/
public function behaviors()
{
return ArrayHelper::merge(parent::behaviors(), [
'NotifyBehavior' => [
'class' => NotifyBehavior::className(),
'conditions' => [],
]
]);
}
}