[ 'name' => 'Should not apply because of higher priority listener', // This override should apply because it is not overridden by the // higher priority listener. 'slogan' => 'Yay for overrides!', ] ]; } } return $overrides; } /** * {@inheritdoc} */ public function getCacheSuffix() { return 'ConfigOverriderLowPriority'; } /** * {@inheritdoc} */ public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) { return NULL; } /** * {@inheritdoc} */ public function getCacheableMetadata($name) { return new CacheableMetadata(); } }