Example #1
0
 /**
  * Ask to each configuration handler to add its dependencies
  * to the current configuration that is being exported.
  */
 public function findDependencies()
 {
     $handlers = ConfigurationManagement::getConfigurationHandler();
     foreach ($handlers as $component => $handler) {
         $handler::alterDependencies($this);
     }
 }