mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 01:57:13 +00:00
Fix issue with missing registered factory
This commit is contained in:
@@ -95,6 +95,18 @@ final class MethodFactoryTest extends TagFactoryTestCase
|
||||
[new MethodParameter('a', new Mixed_())]
|
||||
),
|
||||
],
|
||||
[
|
||||
'@method void setInteger(integer $integer)',
|
||||
new Method(
|
||||
'setInteger',
|
||||
[],
|
||||
new Void_(),
|
||||
false,
|
||||
new Description(''),
|
||||
false,
|
||||
[new MethodParameter('integer', new Integer())]
|
||||
),
|
||||
],
|
||||
[
|
||||
'@method myMethod($a = 1)',
|
||||
new Method(
|
||||
|
||||
Reference in New Issue
Block a user