| 1 | <?php  | 
            ||
| 25 | class VisithorBundle extends Bundle  | 
            ||
| 26 | { | 
            ||
| 27 | /**  | 
            ||
| 28 | * Returns the bundle's container extension.  | 
            ||
| 29 | *  | 
            ||
| 30 | * @return ExtensionInterface The container extension  | 
            ||
| 31 | */  | 
            ||
| 32 | public function getContainerExtension()  | 
            ||
| 36 | |||
| 37 | /**  | 
            ||
| 38 | * Finds and registers Commands.  | 
            ||
| 39 | *  | 
            ||
| 40 | * Override this method if your bundle commands do not follow the conventions:  | 
            ||
| 41 | *  | 
            ||
| 42 | * * Commands are in the 'Command' sub-directory  | 
            ||
| 43 | * * Commands extend Symfony\Component\Console\Command\Command  | 
            ||
| 44 | *  | 
            ||
| 45 | * @param Application $application An Application instance  | 
            ||
| 46 | */  | 
            ||
| 47 | public function registerCommands(Application $application)  | 
            ||
| 50 | }  | 
            ||
| 51 |