private function testCouchbaseConnection(\Couchbase $couchbase) { try { if (count($couchbase->getServers()) > 0) { return true; } } catch (\CouchbaseException $e) { return false; } return true; }