Your IP : 3.144.227.3


Current Path : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/modules/vote/lib/attachment/
Upload File :
Current File : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/modules/vote/lib/attachment/storable.php

<?php

namespace Bitrix\Vote\Attachment;

use Bitrix\Vote\Channel;

interface Storable
{
	/**
	 * @param Channel $channel Group of votes.
	 * @return $this
	 */
	public function setStorage(Channel $channel);
	/**
	 * @return Channel|null
	 */
	public function getStorage();
	/**
	 * @return boolean
	 */
	public function isStorable();
}