Example #1
0
 /**
  * Extracts the arguments from this function.
  *
  * @param DocBlox_Reflection_TokenIterator $tokens
  *
  * @return void
  */
 public function processVariable(DocBlox_Reflection_TokenIterator $tokens)
 {
     // is the variable occurs within arguments parenthesis then it is an argument
     if ($tokens->key() > $this->arguments_token_start && $tokens->key() < $this->arguments_token_end) {
         $this->resetTimer('variable');
         $argument = new DocBlox_Reflection_Argument();
         $argument->parseTokenizer($tokens);
         $this->arguments[$argument->getName()] = $argument;
         if ($this->getDocBlock()) {
             /** @var DocBlox_Reflection_DocBlock_Tag $params  */
             $params = $this->getDocBlock()->getTagsByName('param');
             if (!isset($params[count($this->arguments) - 1])) {
                 $this->logParserError('NOTICE', 'Argument ' . $argument->getName() . ' is missing from the function Docblock', $argument->getLineNumber());
             } else {
                 $param_name = $params[count($this->arguments) - 1]->getVariableName();
                 if ($param_name != $argument->getName()) {
                     if ($param_name == '') {
                         $params[count($this->arguments) - 1]->setVariableName($argument->getName());
                     } else {
                         $this->logParserError('NOTICE', 'Name of argument ' . $argument->getName() . ' does not match with function Docblock', $argument->getLineNumber());
                     }
                 }
             }
         }
         $this->debugTimer('>> Processed argument ' . $argument->getName(), 'variable');
     }
 }
Example #2
0
  public function processVariable(DocBlox_TokenIterator $tokens)
  {
    // is the variable occurs within arguments parenthesis then it is an argument
    if (($tokens->key() > $this->arguments_token_start) && ($tokens->key() < $this->arguments_token_end))
    {
      $this->resetTimer('variable');

      $argument = new DocBlox_Reflection_Argument();
      $argument->parseTokenizer($tokens);
      $this->arguments[$argument->getName()] = $argument;

      $this->debugTimer('>> Processed argument '.$argument->getName(), 'variable');
    }
  }