示例#1
0
 private function bootstrapDependencies(ModuleInterface $module)
 {
     foreach ($module->dependencies() as $name => $version) {
         if (!in_array($name, $this->bootstrapped)) {
             $this->get($name)->bootstrap($this->injector);
         }
     }
 }