4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Intl\ResourceBundle\Transformer
;
14 use Symfony\Component\Filesystem\Filesystem
;
17 * @author Bernhard Schussek <bschussek@gmail.com>
19 class StubbingContext
implements StubbingContextInterface
41 public function __construct($binaryDir, $stubDir, Filesystem
$filesystem, $icuVersion)
43 $this->binaryDir
= $binaryDir;
44 $this->stubDir
= $stubDir;
45 $this->filesystem
= $filesystem;
46 $this->icuVersion
= $icuVersion;
52 public function getBinaryDir()
54 return $this->binaryDir
;
60 public function getStubDir()
62 return $this->stubDir
;
68 public function getFilesystem()
70 return $this->filesystem
;
76 public function getIcuVersion()
78 return $this->icuVersion
;