Issues (1574)

src/Model/InspubCbvers.php (9 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Model;
4
5
use JMS\Serializer\Annotation as JMS;
6
7
/**
8
 * Class InspubCbvers
9
 *
10
 * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/inspubber01")
11
 * @JMS\XmlRoot("inspubCbvers", namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlRoot("inspubCbvers", tag indented incorrectly; expected 42 spaces but found 1
Loading history...
12
 */
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...
13
class InspubCbvers
14
{
15
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
16
     * @JMS\Type("array<DMT\Insolvency\Model\InspubCbvElem>")
17
     * @JMS\XmlList(inline=true, entry="cbv", namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlList(inline=true, tag indented incorrectly; expected 30 spaces but found 1
Loading history...
18
     *
19
     * @var InspubCbvElem[] $cbv
20
     */
21
    public $cbv;
22
}
23