| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class AggregateRootRepositoryInstanciationFailed extends Exception |
||
| 8 | { |
||
| 9 | public static function aggregateRootClassDoesNotExist() |
||
| 10 | { |
||
| 11 | return new static('You have to set an aggregate root before the repository can be initialized.'); |
||
| 12 | } |
||
| 13 | |||
| 14 | public static function aggregateRootClassIsNotValid() |
||
| 17 | } |
||
| 18 | } |
||
| 19 |