| Conditions | 3 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.2098 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 2 | public function __construct() { |
|
| 16 | 2 | if (!self::$memcache) { |
|
| 17 | 1 | if (class_exists('\Memcached')) { |
|
| 18 | 1 | self::$memcache = new \Memcached; |
|
| 19 | 1 | self::$memcache->addServer('localhost', 11211); |
|
| 20 | } else { |
||
| 21 | self::$memcache = new \Memcache; |
||
| 22 | self::$memcache->connect('localhost', 11211); |
||
| 23 | } |
||
| 50 |