Completed
Push — master ( 5c5133...4bc4b0 )
by Marcin
02:40
created

Department   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
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 21
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
    public function __construct(\stdClass $oData = null)
38
    {
39
        parent::__construct($oData);
40
    }
41
}
42