-
-
Notifications
You must be signed in to change notification settings - Fork 470
/
Copy pathCompilerFileFactory.php
45 lines (38 loc) · 1.09 KB
/
CompilerFileFactory.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* This file is part of the Zephir.
*
* (c) Phalcon Team <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Zephir\Compiler;
use Psr\Log\LoggerInterface;
use Zephir\AliasManager;
use Zephir\CompilerFile;
use Zephir\Config;
use Zephir\FileSystem\FileSystemInterface;
final class CompilerFileFactory
{
public function __construct(
private Config $config,
private FileSystemInterface $filesystem,
private LoggerInterface $logger,
) {
}
/**
* Creates CompilerFile instance.
*
* NOTE: Each instance of CompilerFile must have its own AliasManager instance.
*/
public function create(string $className, string $filePath): FileInterface
{
$compiler = new CompilerFile($this->config, new AliasManager(), $this->filesystem);
$compiler->setClassName($className);
$compiler->setFilePath($filePath);
$compiler->setLogger($this->logger);
return $compiler;
}
}