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