Example #1
0
 private function bundles()
 {
     $bundleService = new BundleModel($this->root);
     $bundles = $bundleService->bundles();
     if (!is_array($bundles) || count($bundles) == 0) {
         return;
     }
     foreach ($bundles as $bundleName => $bundle) {
         $this->processBundleContainer($bundle);
     }
 }