Soap Server and Client were breaking binary files during transfer due to invalid Mime Message Parser. Now is it working fine with no errors, but the message parser is about to be rewritten into a better form.
21 行
327 B
PHP
21 行
327 B
PHP
<?php
|
|
|
|
namespace Fixtures;
|
|
|
|
use Fixtures\Attachment\MessageWithAttachmentsTrait;
|
|
|
|
class DummyServiceRequestWithAttachments
|
|
{
|
|
use MessageWithAttachmentsTrait;
|
|
|
|
/**
|
|
* @var int $dummyAttribute
|
|
*/
|
|
public $dummyAttribute;
|
|
|
|
/**
|
|
* @var bool $includeAttachments
|
|
*/
|
|
public $includeAttachments;
|
|
}
|