16 lines
252 B
PHP
16 lines
252 B
PHP
|
<?php
|
||
|
|
||
|
namespace Fixtures;
|
||
|
|
||
|
use Fixtures\Attachment\MessageWithAttachmentsTrait;
|
||
|
|
||
|
class DummyServiceMethodWithIncomingLargeSwaRequest
|
||
|
{
|
||
|
use MessageWithAttachmentsTrait;
|
||
|
|
||
|
/**
|
||
|
* @var int $dummyAttribute
|
||
|
*/
|
||
|
public $dummyAttribute;
|
||
|
}
|