| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class Presenter extends Registrant |
||
| 15 | { |
||
| 16 | public function __toString() |
||
| 17 | { |
||
| 18 | return sprintf('Presenter %d', $this->id); |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @ORM\PostLoad() |
||
| 23 | * |
||
| 24 | * @throws Exception |
||
| 25 | */ |
||
| 26 | public function postLoad() |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @ORM\PreFlush() |
||
| 33 | */ |
||
| 34 | public function preFlush() |
||
| 37 | } |
||
| 38 | } |
||
| 39 |