1818
1919class FixedReader implements ReaderInterface
2020{
21- public function getClassMetadata (\ReflectionClass $ class , string $ name = null ): iterable
21+ public function getClassMetadata (\ReflectionClass $ class , ? string $ name = null ): iterable
2222 {
2323 return [];
2424 }
@@ -36,7 +36,7 @@ public function firstClassMetadata(\ReflectionClass $class, string $name): ?obje
3636 return null ;
3737 }
3838
39- public function getFunctionMetadata (\ReflectionFunctionAbstract $ function , string $ name = null ): iterable
39+ public function getFunctionMetadata (\ReflectionFunctionAbstract $ function , ? string $ name = null ): iterable
4040 {
4141 return [];
4242 }
@@ -50,7 +50,7 @@ public function firstFunctionMetadata(\ReflectionFunctionAbstract $function, str
5050 return null ;
5151 }
5252
53- public function getPropertyMetadata (\ReflectionProperty $ property , string $ name = null ): iterable
53+ public function getPropertyMetadata (\ReflectionProperty $ property , ? string $ name = null ): iterable
5454 {
5555 return [];
5656 }
@@ -60,7 +60,7 @@ public function firstPropertyMetadata(\ReflectionProperty $property, string $nam
6060 return null ;
6161 }
6262
63- public function getConstantMetadata (\ReflectionClassConstant $ constant , string $ name = null ): iterable
63+ public function getConstantMetadata (\ReflectionClassConstant $ constant , ? string $ name = null ): iterable
6464 {
6565 return [];
6666 }
@@ -70,7 +70,7 @@ public function firstConstantMetadata(\ReflectionClassConstant $constant, string
7070 return null ;
7171 }
7272
73- public function getParameterMetadata (\ReflectionParameter $ parameter , string $ name = null ): iterable
73+ public function getParameterMetadata (\ReflectionParameter $ parameter , ? string $ name = null ): iterable
7474 {
7575 return [];
7676 }
0 commit comments