* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ /** * PhpFileLoader loads translations from PHP files returning an array of translations. * * @author Fabien Potencier */ class PhpFileLoader implements LoaderInterface { /** * {@inheritdoc} */ public function load($resource, $locale, $domain = 'messages') { $catalogue = new MessageCatalogue($locale); $catalogue->addMessages(require($resource), $domain); $catalogue->addResource(new FileResource($resource)); return $catalogue; } }