lithium\data\source\Http::sources PHP Method

sources() public method

Returns available data sources (typically a list of REST resources collections).
public sources ( object $class = null ) : array
$class object
return array
    public function sources($class = null)
    {
        return array();
    }

Usage Example

Beispiel #1
0
 public function testSources()
 {
     $http = new Http($this->_testConfig);
     $result = $http->sources();
 }