]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.com> | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | namespace Symfony\Component\Intl\ResourceBundle\Transformer; | |
13 | ||
14 | use Symfony\Component\Filesystem\Filesystem; | |
15 | use Symfony\Component\Intl\ResourceBundle\Compiler\BundleCompilerInterface; | |
16 | ||
17 | /** | |
18 | * Default implementation of {@link CompilationContextInterface}. | |
19 | * | |
20 | * @author Bernhard Schussek <bschussek@gmail.com> | |
21 | */ | |
22 | class CompilationContext implements CompilationContextInterface | |
23 | { | |
24 | /** | |
25 | * @var string | |
26 | */ | |
27 | private $sourceDir; | |
28 | ||
29 | /** | |
30 | * @var string | |
31 | */ | |
32 | private $binaryDir; | |
33 | ||
34 | /** | |
35 | * @var FileSystem | |
36 | */ | |
37 | private $filesystem; | |
38 | ||
39 | /** | |
40 | * @var BundleCompilerInterface | |
41 | */ | |
42 | private $compiler; | |
43 | ||
44 | /** | |
45 | * @var string | |
46 | */ | |
47 | private $icuVersion; | |
48 | ||
49 | public function __construct($sourceDir, $binaryDir, Filesystem $filesystem, BundleCompilerInterface $compiler, $icuVersion) | |
50 | { | |
51 | $this->sourceDir = $sourceDir; | |
52 | $this->binaryDir = $binaryDir; | |
53 | $this->filesystem = $filesystem; | |
54 | $this->compiler = $compiler; | |
55 | $this->icuVersion = $icuVersion; | |
56 | } | |
57 | ||
58 | /** | |
59 | * {@inheritdoc} | |
60 | */ | |
61 | public function getSourceDir() | |
62 | { | |
63 | return $this->sourceDir; | |
64 | } | |
65 | ||
66 | /** | |
67 | * {@inheritdoc} | |
68 | */ | |
69 | public function getBinaryDir() | |
70 | { | |
71 | return $this->binaryDir; | |
72 | } | |
73 | ||
74 | /** | |
75 | * {@inheritdoc} | |
76 | */ | |
77 | public function getFilesystem() | |
78 | { | |
79 | return $this->filesystem; | |
80 | } | |
81 | ||
82 | /** | |
83 | * {@inheritdoc} | |
84 | */ | |
85 | public function getCompiler() | |
86 | { | |
87 | return $this->compiler; | |
88 | } | |
89 | ||
90 | /** | |
91 | * {@inheritdoc} | |
92 | */ | |
93 | public function getIcuVersion() | |
94 | { | |
95 | return $this->icuVersion; | |
96 | } | |
97 | } |