Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/catalog/lib/document/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/catalog/lib/document/action.php

<?php

namespace Bitrix\Catalog\Document;

use Bitrix\Main\Result;

/**
 * Action with document.
 */
interface Action
{
	/**
	 * Checking the possibility of executing an action.
	 *
	 * @return Result
	 */
	public function canExecute(): Result;

	/**
	 * Executing action.
	 *
	 * @return Result
	 */
	public function execute(): Result;
}