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