Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __construct( EntityId $entityId, int $entityAccessCount, int $entityAccessLimit ) { |
||
19 | parent::__construct( |
||
20 | $entityId, |
||
21 | 'Too many entities loaded, must not load more than ' . $entityAccessLimit . ' entities.' |
||
22 | ); |
||
23 | $this->entityAccessCount = $entityAccessCount; |
||
24 | $this->entityAccessLimit = $entityAccessLimit; |
||
25 | } |
||
35 |