50 Cache\
Type $configCacheType,
54 $this->_configCacheType = $configCacheType;
55 $this->_configReader = $configReader;
67 if (
null === $this->_integrations) {
68 $integrations = $this->_configCacheType->load(self::CACHE_ID);
69 if ($integrations && is_string($integrations)) {
70 $this->_integrations = $this->serializer->unserialize($integrations);
72 $this->_integrations = $this->_configReader->read();
73 $this->_configCacheType->save(
74 $this->serializer->serialize($this->_integrations),
__construct(Cache\Type $configCacheType, Config\Reader $configReader, SerializerInterface $serializer=null)