Example #1
0
 /**
  * This method will initialize a temporary coupling container for the given
  * given class or interface instance.
  *
  * @param PHP_Depend_Code_AbstractType $type The currently
  *        visited/traversed class or interface instance.
  *
  * @return void
  * @since 0.10.2
  */
 private function initDependencyMap(PHP_Depend_Code_AbstractType $type)
 {
     if (isset($this->dependencyMap[$type->getUuid()])) {
         return;
     }
     $this->dependencyMap[$type->getUuid()] = array('ce' => array(), 'ca' => array());
 }