16 lines
367 B
PHP
16 lines
367 B
PHP
<?php
|
|
|
|
namespace BeSimple\SoapCommon;
|
|
|
|
use BeSimple\SoapCommon\Storage\RequestHandlerAttachmentsStorage;
|
|
|
|
interface AttachmentsHandlerInterface
|
|
{
|
|
public function addAttachmentStorage(RequestHandlerAttachmentsStorage $requestHandlerAttachmentsStorage);
|
|
|
|
/**
|
|
* @return RequestHandlerAttachmentsStorage
|
|
*/
|
|
public function getAttachmentStorage();
|
|
}
|