[HttpKernel] Adding small example of how the extension alias is auto-generated

This commit is contained in:
Ryan Weaver 2011-06-13 17:16:49 -05:00
parent a12ea12fc1
commit 52cbbfe0d3

View File

@ -69,6 +69,17 @@ abstract class Extension implements ExtensionInterface
* *
* This alias is also the mandatory prefix to use when using YAML. * This alias is also the mandatory prefix to use when using YAML.
* *
* This convention is to remove the "Extension" postfix from the class
* name and then lowercase and underscore the result. So:
*
* AcmeHelloExtension
*
* becomes
*
* acme_hello
*
* This can be overridden in a sub-class to specify the alias manually.
*
* @return string The alias * @return string The alias
*/ */
public function getAlias() public function getAlias()