Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class FeatureNotImplemented extends \Exception implements CacheException |
||
8 | { |
||
9 | public static function scalarResults() : self |
||
10 | { |
||
11 | return new self('Second level cache does not support scalar results.'); |
||
12 | } |
||
13 | |||
14 | public static function multipleRootEntities() : self |
||
15 | { |
||
16 | throw new self('Second level cache does not support multiple root entities.'); |
||
17 | } |
||
18 | |||
19 | public static function nonSelectStatements() : self |
||
22 | } |
||
23 | |||
24 | public static function partialEntities() : self |
||
27 | } |
||
28 | } |
||
29 |