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