pock/tests/utils/SimpleObject.php

39 lines
569 B
PHP
Raw Normal View History

2021-05-14 18:52:00 +03:00
<?php
/**
2021-05-14 18:57:35 +03:00
* PHP 7.2
2021-05-14 18:52:00 +03:00
*
* @category SimpleObject
* @package Pock\TestUtils
*/
namespace Pock\TestUtils;
use JMS\Serializer\Annotation as JMS;
/**
* Class SimpleObject
*
* @category SimpleObject
* @package Pock\TestUtils
*/
class SimpleObject
{
public const JSON = '{"field":"test"}';
public const XML = <<<'EOF'
<?xml version="1.0" encoding="UTF-8"?>
<result>
<field><![CDATA[test]]></field>
</result>
EOF;
2021-05-14 18:57:35 +03:00
2021-05-14 18:52:00 +03:00
/**
* @var string
*
* @JMS\Type("string")
* @JMS\SerializedName("field")
*/
private $field = 'test';
}