class ProjectWithXsdExtension in Service Container 7
Same name and namespace in other branches
Hierarchy
- class \ProjectExtension implements ExtensionInterface
- class \ProjectWithXsdExtension
Expanded class hierarchy of ProjectWithXsdExtension
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Fixtures/ includes/ ProjectWithXsdExtension.php, line 3
View source
class ProjectWithXsdExtension extends ProjectExtension {
public function getXsdValidationBasePath() {
return __DIR__ . '/schema';
}
public function getNamespace() {
return 'http://www.example.com/schema/projectwithxsd';
}
public function getAlias() {
return 'projectwithxsd';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ProjectExtension:: |
public | function | ||
ProjectExtension:: |
public | function |
Loads a specific configuration. Overrides ExtensionInterface:: |
|
ProjectWithXsdExtension:: |
public | function |
Returns the recommended alias to use in XML. Overrides ProjectExtension:: |
|
ProjectWithXsdExtension:: |
public | function |
Returns the namespace to be used for this extension (XML namespace). Overrides ProjectExtension:: |
|
ProjectWithXsdExtension:: |
public | function |
Returns the base path for the XSD files. Overrides ProjectExtension:: |