2017-02-03 15:22:37 +01:00
|
|
|
<?php
|
|
|
|
|
2017-03-15 10:25:48 +01:00
|
|
|
namespace Fixtures;
|
2017-02-03 15:22:37 +01:00
|
|
|
|
2017-04-04 18:36:18 +02:00
|
|
|
use Fixtures\Attachment\MessageWithAttachmentsTrait;
|
2017-02-03 15:22:37 +01:00
|
|
|
|
|
|
|
class DummyServiceRequestWithAttachments
|
|
|
|
{
|
2017-04-04 18:36:18 +02:00
|
|
|
use MessageWithAttachmentsTrait;
|
|
|
|
|
2017-02-03 15:22:37 +01:00
|
|
|
/**
|
|
|
|
* @var int $dummyAttribute
|
|
|
|
*/
|
|
|
|
public $dummyAttribute;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool $includeAttachments
|
|
|
|
*/
|
|
|
|
public $includeAttachments;
|
|
|
|
}
|