Example #1
0
 /**
  * Retrieves the generic information.
  *
  * Finds out whether this method is abstract, static, final and what visibility it has on top of the information
  * found using the DocBlox_Reflection_Function parent method.
  *
  * @param DocBlox_Token_Iterator $tokens
  *
  * @see DocBlox_Reflection_Function::processGenericInformation
  *
  * @return void
  */
 protected function processGenericInformation(DocBlox_Token_Iterator $tokens)
 {
     $this->static = $this->findStatic($tokens) ? true : false;
     $this->abstract = $this->findAbstract($tokens) ? true : false;
     $this->final = $this->findFinal($tokens) ? true : false;
     $this->visibility = $this->findVisibility($tokens);
     parent::processGenericInformation($tokens);
 }