ReflectionDocBlock
ReflectionDocBlock copied to clipboard
Bumps [psalm/phar](https://github.com/psalm/phar) from 4.24.0 to 4.26.0. Commits cb8af2e Updated Psalm phar to commit 6998fabb2bf528b65777bf9941920888d23c03ac 164ce36 Updated Psalm phar to commit 24f7920e9a83d2a2dc18fe1e854d344d7133ad71 953a959 Updated Psalm phar to commit f5b7a569e2261f25ebd2fd42ba9b3e2113e589c4 c9730e1 Updated...
hi, I want to implement interface `\phpDocumentor\Reflection\DocBlockFactoryInterface` , but createInstace() return type does not allow me to do it: ```php /** * Factory method for easy instantiation. * * @param...
Given the following test case, our Description doesn't work as expected with nested braces in inline tags. ``` /** * @uses \phpDocumentor\Reflection\DocBlock\Description * @uses \phpDocumentor\Reflection\DocBlock\Tags\Link * @uses \phpDocumentor\Reflection\DocBlock\Tags\BaseTag * @uses...
Let's say I have the following PHP Code ``` /** * This is a global var. * * @see $varname */ $varname = "test"; /** * This is a class...
This PR fixes handling default argument values when the argument has no type specified. In that case the default value is currently omitted. This notation was already working as expected:...
Here is my solution: https://regex101.com/r/nySDm6/1 ```diff (?: - \(([^\)]*)\) + \((.*(?=\)))\) )? ``` Test data: `static array[] ISO8859_1(array $d = [], string $s="", $f=array()) foo bar baz`
This function return an array of array, there is no defined order of this structure. I guess it could be useful to add a correct interpretation of this information :...
This pr will add variadict and reference support to the `@method` arguments. Since we need to expose more information now the original `getArguments` method is deprecated, and will be replaced...
The `DescriptionFactory` class is replacing all instances of `{}` with `}`, and does not (and cannot) revert them back to `{}` upon `render`. As a result, any instance of `{}`...