Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/forum/lib/comments/service/ |
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/forum/lib/comments/service/base.php |
<?php namespace Bitrix\Forum\Comments\Service; abstract class Base { const TYPE = 'BASE'; public function getType() { return static::TYPE; } abstract public function getText(): string; public function canDelete() { return true; } }