public function getPathForInterfaceMethod()

in src/IndexedPathProvider.hack [73:83]


  public function getPathForInterfaceMethod(
    string $interface,
    string $method,
  ): ?string {
    if (
      !$this->isMethodDefined($this->index['interfaces'], $interface, $method)
    ) {
      return null;
    }
    return $this->paths->getPathForInterfaceMethod($interface, $method);
  }