![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/symfony/intl/Data/Generator/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Intl\Data\Generator; use Symfony\Component\Intl\Data\Bundle\Writer\BundleWriterInterface; /** * Stores contextual information for resource bundle generation. * * @author Bernhard Schussek <[email protected]> * * @internal */ class GeneratorConfig { private $sourceDir; private $icuVersion; /** * @var BundleWriterInterface[] */ private $bundleWriters = []; public function __construct(string $sourceDir, string $icuVersion) { $this->sourceDir = $sourceDir; $this->icuVersion = $icuVersion; } /** * Adds a writer to be used during the data conversion. */ public function addBundleWriter(string $targetDir, BundleWriterInterface $writer) { $this->bundleWriters[$targetDir] = $writer; } /** * Returns the writers indexed by their output directories. * * @return BundleWriterInterface[] */ public function getBundleWriters(): array { return $this->bundleWriters; } /** * Returns the directory where the source versions of the resource bundles * are stored. */ public function getSourceDir(): string { return $this->sourceDir; } /** * Returns the ICU version of the bundles being converted. */ public function getIcuVersion(): string { return $this->icuVersion; } }