AttachmentsHandlerInterface refactored

This commit is contained in:
Petr Bechyně
2016-11-08 18:31:28 +01:00
parent 84c37b1d24
commit 5fbcfb3e22
3 changed files with 41 additions and 9 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace BeSimple\SoapCommon;
use BeSimple\SoapCommon\Storage\RequestHandlerAttachmentsStorage;
interface AttachmentsHandlerInterface
{
public function addAttachmentStorage(RequestHandlerAttachmentsStorage $requestHandlerAttachmentsStorage);
/**
* @return RequestHandlerAttachmentsStorage
*/
public function getAttachmentStorage();
}