Get a Drupal menu item.
@todo Make this return multiple possible candidates for the resolver to consider.
string $path: The path being looked up by
protected function matchDrupalItem($path) {
  // For now we can just proxy our procedural method. At some point this will
  // become more complicated because we'll need to get back candidates for a
  // path and them resolve them based on things like method and scheme which
  // we currently can't do.
  return menu_get_item($path);
}