Example #1
0
  public function processTokens(DocBlox_TokenIterator $tokens)
  {
    // an abstract function does not have a body thus we stop searching
    if ($this->isAbstract())
    {
      return array(0,0);
    }

    return parent::processTokens($tokens);
  }