12
12
13
13
namespace phpDocumentor \Reflection \Types ;
14
14
15
+ use UnexpectedValueException ;
16
+
15
17
/**
16
18
* Convenience class to create a Context for DocBlocks when not using the Reflection Component of phpDocumentor.
17
19
*
@@ -33,31 +35,53 @@ final class ContextFactory
33
35
* Build a Context given a Class Reflection.
34
36
*
35
37
* @see Context for more information on Contexts.
36
- * @return Context
37
38
*/
38
- public function createFromReflector (\Reflector $ reflector )
39
+ public function createFromReflector (\Reflector $ reflector ): Context
39
40
{
41
+ if ($ reflector instanceof \ReflectionClass) {
42
+ return $ this ->createFromReflectionClass ($ reflector );
43
+ }
44
+
45
+ if ($ reflector instanceof \ReflectionParameter) {
46
+ return $ this ->createFromReflectionParameter ($ reflector );
47
+ }
48
+
40
49
if ($ reflector instanceof \ReflectionMethod) {
41
50
return $ this ->createFromReflectionMethod ($ reflector );
42
51
}
43
52
44
- if ($ reflector instanceof \ReflectionClass ) {
45
- return $ this ->createFromReflectionClass ($ reflector );
53
+ if ($ reflector instanceof \ReflectionProperty ) {
54
+ return $ this ->createFromReflectionProperty ($ reflector );
46
55
}
56
+
57
+ if ($ reflector instanceof \ReflectionClassConstant) {
58
+ return $ this ->createFromReflectionClassConstant ($ reflector );
59
+ }
60
+
61
+ throw new UnexpectedValueException ('Unhandled \Reflector instance given: ' . get_class ($ reflector ));
47
62
}
48
63
49
- /**
50
- * @return Context
51
- */
52
- private function createFromReflectionMethod (\ReflectionMethod $ method )
64
+ private function createFromReflectionParameter (\ReflectionParameter $ parameter ): Context
65
+ {
66
+ return $ this ->createFromReflectionClass ($ parameter ->getDeclaringClass ());
67
+ }
68
+
69
+ private function createFromReflectionMethod (\ReflectionMethod $ method ): Context
53
70
{
54
71
return $ this ->createFromReflectionClass ($ method ->getDeclaringClass ());
55
72
}
56
73
57
- /**
58
- * @return Context
59
- */
60
- private function createFromReflectionClass (\ReflectionClass $ class )
74
+ private function createFromReflectionProperty (\ReflectionProperty $ property ): Context
75
+ {
76
+ return $ this ->createFromReflectionClass ($ property ->getDeclaringClass ());
77
+ }
78
+
79
+ private function createFromReflectionClassConstant (\ReflectionClassConstant $ constant ): Context
80
+ {
81
+ return $ this ->createFromReflectionClass ($ constant ->getDeclaringClass ());
82
+ }
83
+
84
+ private function createFromReflectionClass (\ReflectionClass $ class ): Context
61
85
{
62
86
$ fileName = $ class ->getFileName ();
63
87
$ namespace = $ class ->getNamespaceName ();
0 commit comments