You are here

protected function MockServicesRESTServerFactory::getResources in Services 7.3

Overrides ServicesRESTServerFactory::getResources

File

servers/rest_server/tests/rest_server_mock_classes.inc, line 20

Class

MockServicesRESTServerFactory
Factory to build RESTServer object for testing.

Code

protected function getResources() {
  if (isset($this->data['resources'])) {
    return $this->data['resources'];
  }
  return array();
}