@@ -30,6 +30,8 @@ public function getShortDescription($class, $property, array $context = [])
30
30
{
31
31
$ this ->assertIsString ($ class );
32
32
$ this ->assertIsString ($ property );
33
+
34
+ return null ;
33
35
}
34
36
35
37
/**
@@ -39,6 +41,8 @@ public function getLongDescription($class, $property, array $context = [])
39
41
{
40
42
$ this ->assertIsString ($ class );
41
43
$ this ->assertIsString ($ property );
44
+
45
+ return null ;
42
46
}
43
47
44
48
/**
@@ -48,6 +52,8 @@ public function getTypes($class, $property, array $context = [])
48
52
{
49
53
$ this ->assertIsString ($ class );
50
54
$ this ->assertIsString ($ property );
55
+
56
+ return null ;
51
57
}
52
58
53
59
/**
@@ -57,6 +63,8 @@ public function isReadable($class, $property, array $context = [])
57
63
{
58
64
$ this ->assertIsString ($ class );
59
65
$ this ->assertIsString ($ property );
66
+
67
+ return null ;
60
68
}
61
69
62
70
/**
@@ -66,6 +74,8 @@ public function isWritable($class, $property, array $context = [])
66
74
{
67
75
$ this ->assertIsString ($ class );
68
76
$ this ->assertIsString ($ property );
77
+
78
+ return null ;
69
79
}
70
80
71
81
/**
@@ -74,6 +84,8 @@ public function isWritable($class, $property, array $context = [])
74
84
public function getProperties ($ class , array $ context = [])
75
85
{
76
86
$ this ->assertIsString ($ class );
87
+
88
+ return null ;
77
89
}
78
90
79
91
private function assertIsString ($ string )
0 commit comments