connectionProvider = $connectionProvider; $this->cache = $cache; } public function createRepositoryFor($databoxId) { return new CachedCaptionDataRepository( new DbalCaptionDataRepository($this->connectionProvider->getConnection($databoxId)), $this->cache, sprintf('databox[%d]:', $databoxId) ); } }