portal.mkgtu.ru/common/components/behaviors/timestampBehavior/TimestampBehaviorMillisecon...

25 lines
404 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components\behaviors\timestampBehavior;
use common\components\DateTimeHelper;
use yii\behaviors\TimestampBehavior;
class TimestampBehaviorMilliseconds extends TimestampBehavior
{
protected function getValue($event)
{
if ($this->value === null) {
return DateTimeHelper::mstime();
}
parent::getValue($event);
}
}