Department   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 23
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * MOJEPANSTWO-API
4
 *
5
 * Copyright © 2017 pudelek.org.pl
6
 *
7
 * @license MIT License (MIT)
8
 *
9
 * For the full copyright and license information, please view source file
10
 * that is bundled with this package in the file LICENSE
11
 *
12
 * @author  Marcin Pudełek <[email protected]>
13
 */
14
15
declare (strict_types=1);
16
17
namespace mrcnpdlk\MojePanstwo\Model\KrsEntity;
18
19
use mrcnpdlk\MojePanstwo\Model\ModelAbstract;
20
21
class Department extends ModelAbstract
22
{
23
    /**
24
     * @var string
25
     */
26
    public $nazwa;
27
    /**
28
     * @var string
29
     */
30
    public $adres;
31
32
    /**
33
     * Pkd constructor.
34
     *
35
     * @param \stdClass|null $oData
36
     *
37
     * @throws \mrcnpdlk\MojePanstwo\Exception
38
     */
39
    public function __construct(\stdClass $oData = null)
40
    {
41
        parent::__construct($oData);
42
    }
43
}
44