16 lines
238 B
PHP
16 lines
238 B
PHP
|
<?php
|
||
|
|
||
|
namespace Fixtures;
|
||
|
|
||
|
use Fixtures\Attachment\MessageWithAttachmentsTrait;
|
||
|
|
||
|
class DummyServiceMethodWithOutgoingLargeSwaResponse
|
||
|
{
|
||
|
use MessageWithAttachmentsTrait;
|
||
|
|
||
|
/**
|
||
|
* @var bool $status
|
||
|
*/
|
||
|
public $status;
|
||
|
}
|