class Compiler in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Compiler/Compiler.php \Symfony\Component\DependencyInjection\Compiler\Compiler
This class is used to remove circular dependencies between individual passes.
@author Johannes M. Schmitt <schmittjoh@gmail.com>
Hierarchy
- class \Symfony\Component\DependencyInjection\Compiler\Compiler
Expanded class hierarchy of Compiler
2 files declare their use of Compiler
- CheckCircularReferencesPassTest.php in vendor/
symfony/ dependency-injection/ Tests/ Compiler/ CheckCircularReferencesPassTest.php - ContainerBuilder.php in vendor/
symfony/ dependency-injection/ ContainerBuilder.php
File
- vendor/
symfony/ dependency-injection/ Compiler/ Compiler.php, line 21
Namespace
Symfony\Component\DependencyInjection\CompilerView source
class Compiler {
private $passConfig;
private $log = array();
private $loggingFormatter;
private $serviceReferenceGraph;
/**
* Constructor.
*/
public function __construct() {
$this->passConfig = new PassConfig();
$this->serviceReferenceGraph = new ServiceReferenceGraph();
$this->loggingFormatter = new LoggingFormatter();
}
/**
* Returns the PassConfig.
*
* @return PassConfig The PassConfig instance
*/
public function getPassConfig() {
return $this->passConfig;
}
/**
* Returns the ServiceReferenceGraph.
*
* @return ServiceReferenceGraph The ServiceReferenceGraph instance
*/
public function getServiceReferenceGraph() {
return $this->serviceReferenceGraph;
}
/**
* Returns the logging formatter which can be used by compilation passes.
*
* @return LoggingFormatter
*/
public function getLoggingFormatter() {
return $this->loggingFormatter;
}
/**
* Adds a pass to the PassConfig.
*
* @param CompilerPassInterface $pass A compiler pass
* @param string $type The type of the pass
*/
public function addPass(CompilerPassInterface $pass, $type = PassConfig::TYPE_BEFORE_OPTIMIZATION) {
$this->passConfig
->addPass($pass, $type);
}
/**
* Adds a log message.
*
* @param string $string The log message
*/
public function addLogMessage($string) {
$this->log[] = $string;
}
/**
* Returns the log.
*
* @return array Log array
*/
public function getLog() {
return $this->log;
}
/**
* Run the Compiler and process all Passes.
*
* @param ContainerBuilder $container
*/
public function compile(ContainerBuilder $container) {
foreach ($this->passConfig
->getPasses() as $pass) {
$pass
->process($container);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Compiler:: |
private | property | ||
Compiler:: |
private | property | ||
Compiler:: |
private | property | ||
Compiler:: |
private | property | ||
Compiler:: |
public | function | Adds a log message. | |
Compiler:: |
public | function | Adds a pass to the PassConfig. | |
Compiler:: |
public | function | Run the Compiler and process all Passes. | |
Compiler:: |
public | function | Returns the log. | |
Compiler:: |
public | function | Returns the logging formatter which can be used by compilation passes. | |
Compiler:: |
public | function | Returns the PassConfig. | |
Compiler:: |
public | function | Returns the ServiceReferenceGraph. | |
Compiler:: |
public | function | Constructor. |