@@ -45,47 +45,47 @@ public function __construct(iterable $listExtractors = [], iterable $typeExtract
45
45
/**
46
46
* {@inheritdoc}
47
47
*/
48
- public function getProperties ($ class , array $ context = [])
48
+ public function getProperties (string $ class , array $ context = [])
49
49
{
50
50
return $ this ->extract ($ this ->listExtractors , 'getProperties ' , [$ class , $ context ]);
51
51
}
52
52
53
53
/**
54
54
* {@inheritdoc}
55
55
*/
56
- public function getShortDescription ($ class , $ property , array $ context = [])
56
+ public function getShortDescription (string $ class , string $ property , array $ context = [])
57
57
{
58
58
return $ this ->extract ($ this ->descriptionExtractors , 'getShortDescription ' , [$ class , $ property , $ context ]);
59
59
}
60
60
61
61
/**
62
62
* {@inheritdoc}
63
63
*/
64
- public function getLongDescription ($ class , $ property , array $ context = [])
64
+ public function getLongDescription (string $ class , string $ property , array $ context = [])
65
65
{
66
66
return $ this ->extract ($ this ->descriptionExtractors , 'getLongDescription ' , [$ class , $ property , $ context ]);
67
67
}
68
68
69
69
/**
70
70
* {@inheritdoc}
71
71
*/
72
- public function getTypes ($ class , $ property , array $ context = [])
72
+ public function getTypes (string $ class , string $ property , array $ context = [])
73
73
{
74
74
return $ this ->extract ($ this ->typeExtractors , 'getTypes ' , [$ class , $ property , $ context ]);
75
75
}
76
76
77
77
/**
78
78
* {@inheritdoc}
79
79
*/
80
- public function isReadable ($ class , $ property , array $ context = [])
80
+ public function isReadable (string $ class , string $ property , array $ context = [])
81
81
{
82
82
return $ this ->extract ($ this ->accessExtractors , 'isReadable ' , [$ class , $ property , $ context ]);
83
83
}
84
84
85
85
/**
86
86
* {@inheritdoc}
87
87
*/
88
- public function isWritable ($ class , $ property , array $ context = [])
88
+ public function isWritable (string $ class , string $ property , array $ context = [])
89
89
{
90
90
return $ this ->extract ($ this ->accessExtractors , 'isWritable ' , [$ class , $ property , $ context ]);
91
91
}
0 commit comments