public function ArgumentsResolverInterface::getArguments in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/Utility/ArgumentsResolverInterface.php \Drupal\Component\Utility\ArgumentsResolverInterface::getArguments()
Gets arguments suitable for passing to the given callable.
Return value
array An array of arguments to pass to the callable.
Throws
\RuntimeException When a value for an argument given cannot be resolved.
1 method overrides ArgumentsResolverInterface::getArguments()
- ArgumentsResolver::getArguments in lib/
Drupal/ Component/ Utility/ ArgumentsResolver.php - Gets arguments suitable for passing to the given callable.
File
- lib/
Drupal/ Component/ Utility/ ArgumentsResolverInterface.php, line 24 - Contains \Drupal\Component\Utility\ArgumentsResolverInterface.
Class
- ArgumentsResolverInterface
- Resolves the arguments to pass to a callable.
Namespace
Drupal\Component\UtilityCode
public function getArguments(callable $callable);