File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 4
4
- 5.6
5
5
- 7.0
6
6
- hhvm
7
+ - nightly
7
8
8
9
matrix :
9
10
allow_failures :
10
- - php : hhvm
11
-
11
+ - php :
12
+ - hhvm
13
+ - nightly
14
+
12
15
cache :
13
16
directories :
14
17
- $HOME/.composer/cache
Original file line number Diff line number Diff line change 16
16
"psr-4" : {"phpDocumentor\\ Reflection\\ " : [" tests/unit" ]}
17
17
},
18
18
"require-dev" : {
19
- "phpunit/phpunit" : " ^5.2" ,
19
+ "phpunit/phpunit" : " ^5.2||^4.8.24 " ,
20
20
"mockery/mockery" : " ^0.9.4"
21
21
},
22
22
"extra" : {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ final class TypeResolver
38
38
'mixed ' => 'phpDocumentor\Reflection\Types\Mixed ' ,
39
39
'array ' => 'phpDocumentor\Reflection\Types\Array_ ' ,
40
40
'resource ' => 'phpDocumentor\Reflection\Types\Resource ' ,
41
- 'void ' => 'phpDocumentor\Reflection\Types\Void ' ,
41
+ 'void ' => 'phpDocumentor\Reflection\Types\Void_ ' ,
42
42
'null ' => 'phpDocumentor\Reflection\Types\Null_ ' ,
43
43
'scalar ' => 'phpDocumentor\Reflection\Types\Scalar ' ,
44
44
'callback ' => 'phpDocumentor\Reflection\Types\Callable_ ' ,
Original file line number Diff line number Diff line change 20
20
* Void is generally only used when working with return types as it signifies that the method intentionally does not
21
21
* return any value.
22
22
*/
23
- final class Void implements Type
23
+ final class Void_ implements Type
24
24
{
25
25
/**
26
26
* Returns a rendered output of the Type as it would be used in a DocBlock.
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ public function provideKeywords()
373
373
['scalar ' , 'phpDocumentor\Reflection\Types\Scalar ' ],
374
374
['object ' , 'phpDocumentor\Reflection\Types\Object_ ' ],
375
375
['mixed ' , 'phpDocumentor\Reflection\Types\Mixed ' ],
376
- ['void ' , 'phpDocumentor\Reflection\Types\Void ' ],
376
+ ['void ' , 'phpDocumentor\Reflection\Types\Void_ ' ],
377
377
['$this ' , 'phpDocumentor\Reflection\Types\This ' ],
378
378
['static ' , 'phpDocumentor\Reflection\Types\Static_ ' ],
379
379
['self ' , 'phpDocumentor\Reflection\Types\Self_ ' ],
You can’t perform that action at this time.
0 commit comments