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