File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1818 */
1919final class StaticReflectionService implements ReflectionService
2020{
21- public function getParentClasses (string $ class ): array
21+ public function getParentClasses ($ class ): array
2222 {
2323 return [];
2424 }
2525
26- public function getClassShortName (string $ class ): string
26+ public function getClassShortName ($ class ): string
2727 {
2828 $ nsSeparatorLastPosition = strrpos ($ class , '\\' );
2929
@@ -34,7 +34,7 @@ public function getClassShortName(string $class): string
3434 return $ class ;
3535 }
3636
37- public function getClassNamespace (string $ class ): string
37+ public function getClassNamespace ($ class ): string
3838 {
3939 $ namespace = '' ;
4040
@@ -45,17 +45,17 @@ public function getClassNamespace(string $class): string
4545 return $ namespace ;
4646 }
4747
48- public function getClass (string $ class ): \ReflectionClass
48+ public function getClass ($ class ): \ReflectionClass
4949 {
5050 return new \ReflectionClass ($ class );
5151 }
5252
53- public function getAccessibleProperty (string $ class , string $ property ): ?\ReflectionProperty
53+ public function getAccessibleProperty ($ class , $ property ): ?\ReflectionProperty
5454 {
5555 return null ;
5656 }
5757
58- public function hasPublicMethod (string $ class , string $ method ): bool
58+ public function hasPublicMethod ($ class , $ method ): bool
5959 {
6060 return true ;
6161 }
You can’t perform that action at this time.
0 commit comments