12345678910111213141516171819 |
- <?php
- namespace Osinet\DemoBundle;
- use Symfony\Component\HttpKernel\Bundle\Bundle;
- class OsinetDemoBundle extends Bundle {
- /**
- * OsinetDemoBundle constructor.
- *
- * @see \Symfony\Component\HttpKernel\Bundle\Bundle::getName()
- * @see \Symfony\Component\HttpKernel\Bundle\Bundle::parseClassName()
- */
- public function __construct() {
- $this->name = substr(__CLASS__, 1 + strlen(__NAMESPACE__));
- }
- }
|