CompilerExtension
abstract class CompilerExtension
Configurator compiling extension.
Properties
protected Compiler | $compiler | ||
protected string | $name | ||
protected array|object | $config | ||
protected Closure | $initialization |
Methods
No description
Returns extension configuration.
Returns configuration schema.
Checks whether $config contains only $expected items and returns combined array.
No description
Reads configuration from file.
Loads list of service definitions from configuration.
No description
No description
Prepend extension name to identifier or service name.
Processes configuration data. Intended to be overridden by descendant.
Adjusts DI container before is compiled to PHP class. Intended to be overridden by descendant.
Adjusts DI container compiled to PHP class. Intended to be overridden by descendant.
Details
at line 36
CompilerExtension
setCompiler(Compiler $compiler, string $name)
at line 49
CompilerExtension
setConfig(array|object $config)
at line 63
array|object
getConfig()
Returns extension configuration.
at line 72
Schema
getConfigSchema()
Returns configuration schema.
at line 85
array
validateConfig(array $expected, array $config = null, string $name = null)
deprecated
deprecated
Checks whether $config contains only $expected items and returns combined array.
at line 102
ContainerBuilder
getContainerBuilder()
at line 111
array
loadFromFile(string $file)
Reads configuration from file.
at line 124
void
loadDefinitionsFromConfig(array $configList)
Loads list of service definitions from configuration.
Prefixes its names and replaces @extension with name in definition.
at line 135
protected Loader
createLoader()
at line 141
Closure
getInitialization()
at line 150
string
prefix(string $id)
Prepend extension name to identifier or service name.
at line 160
void
loadConfiguration()
Processes configuration data. Intended to be overridden by descendant.
at line 169
void
beforeCompile()
Adjusts DI container before is compiled to PHP class. Intended to be overridden by descendant.
at line 178
void
afterCompile(ClassType $class)
Adjusts DI container compiled to PHP class. Intended to be overridden by descendant.