function iterator
Creates a lazy iterator.
Parameters
ReferenceConfigurator[] $values:
11 string references to 'iterator'
- Container::resolveServicesAndParameters in core/
lib/ Drupal/ Component/ DependencyInjection/ Container.php - Resolves arguments that represent services or variables to the real values.
- DebugClassLoader::setReturnType in vendor/
symfony/ error-handler/ DebugClassLoader.php - Migration::findMigrationDependencies in core/
modules/ migrate/ src/ Plugin/ Migration.php - Find migration dependencies from migration_lookup and sub_process plugins.
- OptimizedPhpArrayDumper::getIterator in core/
lib/ Drupal/ Component/ DependencyInjection/ Dumper/ OptimizedPhpArrayDumper.php - Gets a service iterator in a suitable PHP array format.
- PhpArrayContainer::resolveServicesAndParameters in core/
lib/ Drupal/ Component/ DependencyInjection/ PhpArrayContainer.php - Resolves arguments that represent services or variables to the real values.
File
-
vendor/
symfony/ dependency-injection/ Loader/ Configurator/ ContainerConfigurator.php, line 139
Namespace
Symfony\Component\DependencyInjection\Loader\ConfiguratorCode
function iterator(array $values) : IteratorArgument {
return new IteratorArgument(AbstractConfigurator::processValue($values, true));
}