Your IP : 3.22.75.216


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/forum/lib/comments/service/
Upload File :
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;
	}
}