You are here

protected function MockServicesRESTServerFactory::getFormatters in Services 7.3

Overrides ServicesRESTServerFactory::getFormatters

File

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

Class

MockServicesRESTServerFactory
Factory to build RESTServer object for testing.

Code

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