Skip to content

Instantly share code, notes, and snippets.

@prochor666
Created December 16, 2014 11:23
Show Gist options
  • Save prochor666/22fee0041e00efce7b7d to your computer and use it in GitHub Desktop.
Save prochor666/22fee0041e00efce7b7d to your computer and use it in GitHub Desktop.
phpdocumentor 2.8.* + @param fix
<?php
namespace phpDocumentor\Plugin\Core\Descriptor\Validator;
/**
*
* @property \phpDocumentor\Descriptor\ArgumentDescriptor $argument
* @property \phpDocumentor\Descriptor\Tag\ParamDescriptor $parameter
* @property \phpDocumentor\Descriptor\Collection $parameters
* @property string $fqsen
* @property string $name
* @property string $index
* @property string $key
*/
class ValidationValueObject extends \ArrayObject
{
protected $data = array(
'arguments' => '',
'argument' => '',
'parameter' => '',
'parameters' => '',
'fqsen' => '',
'name' => '',
- 'index' => 0, // from '' to 0
+ 'key' => 0, // from '' to 0
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment