Conditions | 2 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function __construct( |
||
31 | EntityId $fromId, |
||
32 | PropertyId $propertyId, |
||
33 | array $toIds, |
||
34 | $maxDepth, |
||
35 | $message = null, |
||
36 | ?Exception $previous = null |
||
37 | ) { |
||
38 | $this->maxDepth = $maxDepth; |
||
39 | $message = $message ?: 'Referenced entity id lookup failed: Maximum depth of ' . $maxDepth . ' exhausted.'; |
||
40 | |||
41 | parent::__construct( $fromId, $propertyId, $toIds, $message, $previous ); |
||
42 | } |
||
52 |