Your IP : 3.147.28.158


Current Path : /var/www/axolotl/data/www/yar.axolotls.ru/bitrix/modules/disk/lib/uf/
Upload File :
Current File : /var/www/axolotl/data/www/yar.axolotls.ru/bitrix/modules/disk/lib/uf/iworkwithattachedobject.php

<?php


namespace Bitrix\Disk\Uf;


use Bitrix\Disk\AttachedObject;

interface IWorkWithAttachedObject
{
	/**
	 * @param AttachedObject $attachedObject
	 * @return $this
	 */
	public function setAttachedObject(AttachedObject $attachedObject);

	/**
	 * @return AttachedObject
	 */
	public function getAttachedObject();

	/**
	 * @return bool
	 */
	public function isSetAttachedObject();
}