15 lines
272 B
PHP
Executable File
15 lines
272 B
PHP
Executable File
<?php
|
|
|
|
namespace backend\modules\holiday\models;
|
|
|
|
class Holiday extends \common\models\Holiday
|
|
{
|
|
public function behaviors()
|
|
{
|
|
return [
|
|
'log' => [
|
|
'class' => \common\behaviors\LogBehavior::class,
|
|
]
|
|
];
|
|
}
|
|
} |