SearchModifiedSinceResult
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 2
c 1
b 0
f 0
dl 0
loc 10
1
<?php
2
0 ignored issues
show
Coding Style introduced by
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Soap\Response;
4
5
use DMT\Insolvency\Model\PublicatieLijst;
6
use JMS\Serializer\Annotation as JMS;
7
8
/**
9
 * Class SearchModifiedSinceResult
10
 *
11
 * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01")
12
 * @JMS\XmlRoot("searchModifiedSinceResult", namespace="http://www.rechtspraak.nl/namespaces/cir01")
0 ignored issues
show
Coding Style introduced by
Tag value for @JMS\XmlRoot("searchModifiedSinceResult", tag indented incorrectly; expected 23 spaces but found 1
Loading history...
13
 */
0 ignored issues
show
Coding Style introduced by
Missing @category tag in class comment
Loading history...
Coding Style introduced by
Missing @package tag in class comment
Loading history...
Coding Style introduced by
Missing @author tag in class comment
Loading history...
Coding Style introduced by
Missing @license tag in class comment
Loading history...
Coding Style introduced by
Missing @link tag in class comment
Loading history...
14
class SearchModifiedSinceResult
15
{
16
    /**
0 ignored issues
show
Coding Style introduced by
Missing short description in doc comment
Loading history...
17
     * @JMS\SerializedName("publicatieLijst")
18
     * @JMS\Type("DMT\Insolvency\Model\PublicatieLijst")
19
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Coding Style introduced by
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 22 spaces but found 1
Loading history...
20
     *
21
     * @var PublicatieLijst
22
     */
23
    public $publicatieLijst;
24
}
25