comparison core/modules/aggregator/src/ItemsImporter.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
92 catch (PluginException $e) { 92 catch (PluginException $e) {
93 $success = FALSE; 93 $success = FALSE;
94 watchdog_exception('aggregator', $e); 94 watchdog_exception('aggregator', $e);
95 } 95 }
96 96
97 // Store instances in an array so we dont have to instantiate new objects. 97 // Store instances in an array so we don't have to instantiate new objects.
98 $processor_instances = []; 98 $processor_instances = [];
99 foreach ($this->config->get('processors') as $processor) { 99 foreach ($this->config->get('processors') as $processor) {
100 try { 100 try {
101 $processor_instances[$processor] = $this->processorManager->createInstance($processor); 101 $processor_instances[$processor] = $this->processorManager->createInstance($processor);
102 } 102 }