| Conditions | 3 |
| Paths | 3 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | return self::create( $context, $path, $name ); |
||
| 37 | } |
||
| 38 | |||
| 39 | |||
| 40 | /** |
||
| 41 | * Enables or disables caching of class instances. |
||
| 42 | * |
||
| 43 | * @param boolean $value True to enable caching, false to disable it. |
||
| 44 | * @return boolean Previous cache setting |
||
| 45 | */ |
||
| 46 | static public function setCache( $value ) |
||
| 47 | { |
||
| 48 | return self::cache( $value ); |
||
| 49 | } |
||
| 50 | } |
||
| 51 |