TheSeer\phpDox\Collector\IndexCollection::addInterface PHP Метод

addInterface() публичный Метод

public addInterface ( InterfaceObject $interface )
$interface InterfaceObject
    public function addInterface(InterfaceObject $interface)
    {
        $this->addUnit($interface, 'interface');
    }

Usage Example

Пример #1
0
 /**
  *
  */
 public function addInterface(InterfaceObject $interface)
 {
     $this->loadedUnits[$interface->getName()] = $interface;
     $this->registerForSaving($interface);
     $this->index->addInterface($interface);
 }