initializeCacheCatalogue example

return $this->loaders;
    }

    /** * @return void */
    protected function loadCatalogue(string $locale)
    {
        if (null === $this->cacheDir) {
            $this->initializeCatalogue($locale);
        } else {
            $this->initializeCacheCatalogue($locale);
        }
    }

    /** * @return void */
    protected function initializeCatalogue(string $locale)
    {
        $this->assertValidLocale($locale);

        try {
            
Home | Imprint | This part of the site doesn't use cookies.