chore: Мелкие правки

This commit is contained in:
origami11@yandex.ru 2026-03-16 13:52:11 +03:00
parent 580ca3030d
commit 82b4c3b6ff

View file

@ -1,11 +1,13 @@
<?php
namespace ctiso\Model;
use \ctiso\Database;
abstract class BaseMapper
{
/** @var Database Соединение с базой данных */
public Database $db;
/**
* @property \ctiso\Database $db
*/
abstract class BaseMapper {
function getAllAsOptions(): array {
return [];
}