Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/forum/lib/comments/service/
Upload File :
Current File : /var/www/homesaver/www/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;
	}
}