File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 7
7
],
8
8
"require" : {
9
9
"php" : " >=5.5" ,
10
- "phpdocumentor/reflection-common" : " dev-master@dev "
10
+ "phpdocumentor/reflection-common" : " ^0.1 "
11
11
},
12
12
"autoload" : {
13
13
"psr-4" : {"phpDocumentor\\ Reflection\\ " : [" src/" ]}
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ final class TypeResolver
32
32
'integer ' => 'phpDocumentor\Reflection\Types\Integer ' ,
33
33
'bool ' => 'phpDocumentor\Reflection\Types\Boolean ' ,
34
34
'boolean ' => 'phpDocumentor\Reflection\Types\Boolean ' ,
35
- 'float ' => 'phpDocumentor\Reflection\Types\Float ' ,
36
- 'double ' => 'phpDocumentor\Reflection\Types\Float ' ,
35
+ 'float ' => 'phpDocumentor\Reflection\Types\Float_ ' ,
36
+ 'double ' => 'phpDocumentor\Reflection\Types\Float_ ' ,
37
37
'object ' => 'phpDocumentor\Reflection\Types\Object_ ' ,
38
38
'mixed ' => 'phpDocumentor\Reflection\Types\Mixed ' ,
39
39
'array ' => 'phpDocumentor\Reflection\Types\Array_ ' ,
Original file line number Diff line number Diff line change 17
17
/**
18
18
* Value Object representing a Float.
19
19
*/
20
- final class Float implements Type
20
+ final class Float_ implements Type
21
21
{
22
22
/**
23
23
* 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 @@ -327,8 +327,8 @@ public function provideKeywords()
327
327
['string ' , 'phpDocumentor\Reflection\Types\String_ ' ],
328
328
['int ' , 'phpDocumentor\Reflection\Types\Integer ' ],
329
329
['integer ' , 'phpDocumentor\Reflection\Types\Integer ' ],
330
- ['float ' , 'phpDocumentor\Reflection\Types\Float ' ],
331
- ['double ' , 'phpDocumentor\Reflection\Types\Float ' ],
330
+ ['float ' , 'phpDocumentor\Reflection\Types\Float_ ' ],
331
+ ['double ' , 'phpDocumentor\Reflection\Types\Float_ ' ],
332
332
['bool ' , 'phpDocumentor\Reflection\Types\Boolean ' ],
333
333
['boolean ' , 'phpDocumentor\Reflection\Types\Boolean ' ],
334
334
['resource ' , 'phpDocumentor\Reflection\Types\Resource ' ],
You can’t perform that action at this time.
0 commit comments