portal.mkgtu.ru/common/components/changeHistoryHandler/actions/EmptyAction.php

12 lines
176 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components\changeHistoryHandler\actions;
class EmptyAction extends BaseAction
{
public function proceed(): bool
{
return true;
}
}