Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 2 | public function __construct( string $entityJson, string $title, $namespaceId, $revisionId, string $revisionTime ) { |
|
25 | 2 | $this->entityJson = $entityJson; |
|
26 | 2 | $this->title = $title; |
|
27 | 2 | $this->namespaceId = (int)$namespaceId; |
|
28 | 2 | $this->revisionId = (int)$revisionId; |
|
29 | 2 | $this->revisionTime = $revisionTime; |
|
30 | 2 | } |
|
31 | |||
53 |