lithium\data\source\http\adapter\CouchDb::sources PHP Method

sources() public method

Returns an array of object types accessible through this database.
public sources ( object $class = null ) : void
$class object
return void
    public function sources($class = null)
    {
    }

Usage Example

Esempio n. 1
0
 public function testSources()
 {
     $couchdb = new CouchDb($this->_testConfig);
     $result = $couchdb->sources();
     $this->assertNull($result);
 }