BeSimpleSoap/src/BeSimple/SoapCommon/AttachmentsHandlerInterface.php

16 lines
367 B
PHP
Raw Normal View History

<?php
namespace BeSimple\SoapCommon;
use BeSimple\SoapCommon\Storage\RequestHandlerAttachmentsStorage;
2016-11-08 18:31:28 +01:00
interface AttachmentsHandlerInterface
{
public function addAttachmentStorage(RequestHandlerAttachmentsStorage $requestHandlerAttachmentsStorage);
2016-11-08 18:31:28 +01:00
/**
* @return RequestHandlerAttachmentsStorage
*/
public function getAttachmentStorage();
}