/**
  * Returns the concrete type instance associated with with this placeholder.
  *
  * @return PHP_Depend_Code_AbstractClassOrInterface
  */
 public function getType()
 {
     if ($this->typeInstance === null) {
         $this->typeInstance = $this->context->getClassOrInterface($this->getImage());
     }
     return $this->typeInstance;
 }
Beispiel #2
0
 /**
  * Returns the class or interface instance that this node instance represents.
  *
  * @return PHP_Depend_Code_AbstractClassOrInterface
  * @since 0.10.0
  */
 public function getType()
 {
     if ($this->typeInstance == null) {
         $this->typeInstance = $this->context->getClassOrInterface($this->qualifiedName);
     }
     return $this->typeInstance;
 }