Files
BeSimpleSoap/src/BeSimple/SoapServer/Tests/DummyServiceResponseWithAttachments.php
2017-02-14 16:01:39 +01:00

24 lines
474 B
PHP

<?php
namespace BeSimple\SoapServer\Tests;
use BeSimple\SoapServer\Tests\Attachment\AttachmentCollection;
class DummyServiceResponseWithAttachments
{
/**
* @var bool $status
*/
public $status;
/**
* @var AttachmentCollection $attachmentCollection
*/
public $attachmentCollection;
public function hasAttachments()
{
return $this->attachmentCollection !== null && $this->attachmentCollection->hasAttachments();
}
}