Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function __construct(ReadOnlyEntityInterface $proxy, $property) |
||
14 | { |
||
15 | $message = get_parent_class($proxy) . '::$' . $property . ' is not loaded, you can\'t access it. '; |
||
16 | $message .= 'Add select() in your QueryBuilder to load it.'; |
||
17 | |||
18 | parent::__construct($message); |
||
19 | } |
||
20 | } |
||
21 |