You are here

interface ArgumentsResolverInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/Utility/ArgumentsResolverInterface.php \Drupal\Component\Utility\ArgumentsResolverInterface

Resolves the arguments to pass to a callable.

Hierarchy

Expanded class hierarchy of ArgumentsResolverInterface

All classes that implement ArgumentsResolverInterface

1 file declares its use of ArgumentsResolverInterface
AccessManager.php in core/lib/Drupal/Core/Access/AccessManager.php
Contains \Drupal\Core\Access\AccessManager.

File

core/lib/Drupal/Component/Utility/ArgumentsResolverInterface.php, line 13
Contains \Drupal\Component\Utility\ArgumentsResolverInterface.

Namespace

Drupal\Component\Utility
View source
interface ArgumentsResolverInterface {

  /**
   * Gets arguments suitable for passing to the given callable.
   *
   * @return array
   *   An array of arguments to pass to the callable.
   *
   * @throws \RuntimeException
   *   When a value for an argument given cannot be resolved.
   */
  public function getArguments(callable $callable);

}

Members

Namesort descending Modifiers Type Description Overrides
ArgumentsResolverInterface::getArguments public function Gets arguments suitable for passing to the given callable. 1