fix: BaseMapper

This commit is contained in:
origami11@yandex.ru 2024-01-22 14:07:45 +03:00
parent f594611656
commit 277a297b8a

View file

@ -3,5 +3,7 @@
namespace ctiso\Model;
abstract class BaseMapper {
abstract function getAllAsOptions(): array;
function getAllAsOptions(): array {
return [];
}
}