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