32a33,57 > diff --git a/core/lib/Drupal/Core/Cache/CacheFactory.php b/core/lib/Drupal/Core/Cache/CacheFactory.php > index aba2176..2697964 100644 > --- a/core/lib/Drupal/Core/Cache/CacheFactory.php > +++ b/core/lib/Drupal/Core/Cache/CacheFactory.php > @@ -62,20 +62,4 @@ public function get($bin) { > return $this->container->get($service_name)->get($bin); > } > > - /** > - * Helper to register a cache bin to the container. > - * > - * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container > - * The container to register the cache bin on. > - * @param $bin > - * The cache bin to add. Do not add the cache_ prefix. > - */ > - public static function registerBin(ContainerBuilder $container, $bin) { > - $container > - ->register("cache.$bin", 'Drupal\Core\Cache\CacheBackendInterface') > - ->setFactoryService('cache_factory') > - ->setFactoryMethod('get') > - ->addArgument($bin) > - ->addTag('cache.bin'); > - } > } 35c60 < index 0000000..f581378 --- > index 0000000..047b183 64c89 < + return new FileStorage(config_get_config_directory(CONFIG_ACTIVE_DIRECTORY)); --- > + return new FileStorage(config_get_config_directory(CONFIG_STAGING_DIRECTORY)); 1992c2017 < index 0000000..9171a57 --- > index 0000000..ee74203 2005c2030 < + - { name: encoder, format: { serialization_test: 'Serialization test' } } --- > + - { name: encoder, format: serialization_test} 2658a2684,2695 > diff --git a/core/modules/views/views_ui/services.yml b/core/modules/views/views_ui/services.yml > new file mode 100644 > index 0000000..7d81707 > --- /dev/null > +++ b/core/modules/views/views_ui/services.yml > @@ -0,0 +1,6 @@ > +services: > + paramconverter.views_ui: > + class: Drupal\views_ui\ParamConverter\ViewUIConverter > + arguments: ['@user.tempstore'] > + tags: > + - { name: paramconverter }