Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | 4 | public function __construct() |
|
29 | { |
||
30 | 4 | $map = [ |
|
31 | 4 | 'author' => 'author', |
|
32 | 4 | 'creationDate' => 'creation_date', |
|
33 | 4 | 'creatorApplication' => 'creator_application', |
|
34 | 4 | 'documentSubject' => 'document_subject', |
|
35 | 4 | 'documentTitle' => 'document_title', |
|
36 | 4 | 'lastModificationDate' => 'last_modification_date', |
|
37 | 4 | 'userPassword' => 'user_password', |
|
38 | 4 | ]; |
|
39 | |||
40 | 4 | $this->setMap($map); |
|
41 | } |
||
43 |