SoapClient large refactoring & tests update
This commit is contained in:
35
src/BeSimple/SoapServer/Tests/Attachment/Attachment.php
Normal file
35
src/BeSimple/SoapServer/Tests/Attachment/Attachment.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace BeSimple\SoapServer\Tests\Attachment;
|
||||
|
||||
class Attachment
|
||||
{
|
||||
/**
|
||||
* @var string $fileName
|
||||
*/
|
||||
public $fileName;
|
||||
|
||||
/**
|
||||
* @var string $content
|
||||
*/
|
||||
public $contentType;
|
||||
|
||||
/**
|
||||
* @var string $content
|
||||
*/
|
||||
public $content;
|
||||
|
||||
/**
|
||||
* Attachment constructor.
|
||||
*
|
||||
* @param string $fileName
|
||||
* @param string $contentType
|
||||
* @param string $content
|
||||
*/
|
||||
public function __construct($fileName, $contentType, $content)
|
||||
{
|
||||
$this->fileName = $fileName;
|
||||
$this->contentType = $contentType;
|
||||
$this->content = $content;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user