Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function __construct( |
||
15 | $id, |
||
16 | $parentId, |
||
17 | $name, |
||
18 | $isAlwaysAvailable, |
||
19 | $isPathIdentificationStringModified, |
||
20 | $newId |
||
21 | ) { |
||
22 | $this->id = $id; |
||
23 | $this->parentId = $parentId; |
||
24 | $this->name = $name; |
||
25 | $this->isAlwaysAvailable = $isAlwaysAvailable; |
||
26 | $this->isPathIdentificationStringModified = $isPathIdentificationStringModified; |
||
27 | $this->newId = $newId; |
||
28 | } |
||
29 | |||
60 |