dmt-software /
insolvency-client
| 1 | <?php |
||
| 2 | |||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 3 | namespace DMT\Insolvency\Soap\Response; |
||
| 4 | |||
| 5 | use DMT\Insolvency\Soap\Response; |
||
| 6 | use JMS\Serializer\Annotation as JMS; |
||
| 7 | |||
| 8 | /** |
||
| 9 | * Class SearchByDateResponse |
||
| 10 | * |
||
| 11 | * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01") |
||
| 12 | * @JMS\XmlRoot("searchByDateResponse", namespace="http://www.rechtspraak.nl/namespaces/cir01") |
||
|
0 ignored issues
–
show
|
|||
| 13 | */ |
||
|
0 ignored issues
–
show
|
|||
| 14 | class SearchByDateResponse implements Response |
||
| 15 | { |
||
| 16 | /** |
||
|
0 ignored issues
–
show
|
|||
| 17 | * @JMS\SerializedName("searchByDateResult") |
||
| 18 | * @JMS\Type("DMT\Insolvency\Soap\Response\SearchByDateResult") |
||
| 19 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/cir01") |
||
|
0 ignored issues
–
show
|
|||
| 20 | * |
||
| 21 | * @var SearchByDateResult $result |
||
| 22 | */ |
||
| 23 | public $result; |
||
| 24 | |||
| 25 | } |
||
| 26 |