| Total Complexity | 2 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 12 | class AppKernel extends Kernel  | 
            ||
| 13 | { | 
            ||
| 14 | /**  | 
            ||
| 15 | * Returns an array of bundles to register.  | 
            ||
| 16 | *  | 
            ||
| 17 | * @return iterable|BundleInterface[] An iterable of bundle instances  | 
            ||
| 18 | */  | 
            ||
| 19 | public function registerBundles()  | 
            ||
| 20 |     { | 
            ||
| 21 | $bundles = array(  | 
            ||
| 22 | // ...  | 
            ||
| 23 | |||
| 24 | new \Sitetheory\Bundle\ProfilerStorageBundle\SitetheoryProfilerStorageBundle(),  | 
            ||
| 25 | );  | 
            ||
| 26 | |||
| 27 | return $bundles;  | 
            ||
| 28 | }  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 | * Loads the container configuration.  | 
            ||
| 32 | *  | 
            ||
| 33 | * @param LoaderInterface $loader  | 
            ||
| 34 | */  | 
            ||
| 35 | public function registerContainerConfiguration(LoaderInterface $loader)  | 
            ||
| 37 | // TODO: Implement registerContainerConfiguration() method.  | 
            ||
| 38 | }  | 
            ||
| 40 |