public function HandlerInterface::supportsMethod in JSON-RPC 8
Same name and namespace in other branches
- 2.x src/HandlerInterface.php \Drupal\jsonrpc\HandlerInterface::supportsMethod()
Whether the given method is supported.
Parameters
string $name: The method name for which support should be determined.
Return value
bool Whether the handler supports the given method name.
1 method overrides HandlerInterface::supportsMethod()
- Handler::supportsMethod in src/
Handler.php - Whether the given method is supported.
File
- src/
HandlerInterface.php, line 72
Class
- HandlerInterface
- Interface for the handler.
Namespace
Drupal\jsonrpcCode
public function supportsMethod($name);