Issues (1574)

src/Soap/Response/GetLastUpdateResult.php (9 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Soap\Response;
4
5
use DMT\Insolvency\Model\LastUpdate;
6
use JMS\Serializer\Annotation as JMS;
7
8
/**
9
 * Class GetLastUpdateResult
10
 *
11
 * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01")
12
 * @JMS\XmlRoot("GetLastUpdateResult", namespace="http://www.rechtspraak.nl/namespaces/cir01")
0 ignored issues
show
Tag value for @JMS\XmlRoot("GetLastUpdateResult", tag indented incorrectly; expected 29 spaces but found 1
Loading history...
13
 */
0 ignored issues
show
Missing @category tag in class comment
Loading history...
Missing @package tag in class comment
Loading history...
Missing @author tag in class comment
Loading history...
Missing @license tag in class comment
Loading history...
Missing @link tag in class comment
Loading history...
14
class GetLastUpdateResult
15
{
16
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
17
     * @JMS\SerializedName("lastUpdate")
18
     * @JMS\Type("DMT\Insolvency\Model\LastUpdate")
19
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/updateWs")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 17 spaces but found 1
Loading history...
20
     *
21
     * @var LastUpdate $lastUpdate
22
     */
23
    public $lastUpdate;
24
}
25