dmt-software /
insolvency-client
| 1 | <?php |
||
| 2 | |||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 3 | namespace DMT\Insolvency\Soap\Request; |
||
| 4 | |||
| 5 | use DMT\Insolvency\Soap\Request; |
||
| 6 | use JMS\Serializer\Annotation as JMS; |
||
| 7 | use Symfony\Component\Validator\Constraints as Assert; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Class SearchModifiedSince |
||
| 11 | * |
||
| 12 | * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01") |
||
| 13 | * @JMS\XmlRoot("searchModifiedSince", namespace="http://www.rechtspraak.nl/namespaces/cir01") |
||
|
0 ignored issues
–
show
|
|||
| 14 | */ |
||
|
0 ignored issues
–
show
|
|||
| 15 | class SearchModifiedSince implements Request |
||
| 16 | { |
||
| 17 | /** |
||
|
0 ignored issues
–
show
|
|||
| 18 | * @Assert\NotNull |
||
| 19 | * |
||
| 20 | * @JMS\SerializedName("modifyDate") |
||
| 21 | * @JMS\Type("DateTime<'Y-m-d\TH:i:sP'>") |
||
| 22 | * @JMS\XmlElement(cdata=false) |
||
| 23 | * |
||
| 24 | * @var \DateTime $modifyDate |
||
| 25 | */ |
||
| 26 | public $modifyDate; |
||
| 27 | } |
||
| 28 |