| Total Complexity | 3 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class SchemaWasNotProvidedException extends RuntimeException implements FriendlyExceptionInterface |
||
| 11 | { |
||
| 12 | public function __construct() |
||
| 13 | { |
||
| 14 | parent::__construct('Schema was not provided.'); |
||
| 15 | } |
||
| 16 | public function getName(): string |
||
| 17 | { |
||
| 18 | return 'Current Schema for Cycle ORM was not provided'; |
||
| 19 | } |
||
| 20 | public function getSolution(): ?string |
||
| 23 | } |
||
| 24 | } |
||
| 25 |