11
11
use PHPStan \Reflection \MissingMethodFromReflectionException ;
12
12
use PHPStan \Reflection \ReflectionProvider ;
13
13
use PHPStan \Rules \Rule ;
14
+ use PHPStan \Rules \RuleErrorBuilder ;
14
15
use PHPStan \Rules \RuleLevelHelper ;
15
16
use PHPStan \Type \ErrorType ;
16
17
use PHPStan \Type \Type ;
17
18
use function sprintf ;
19
+ use function strtolower ;
18
20
19
21
/**
20
22
* @implements Rule<StaticCall>
@@ -90,18 +92,20 @@ static function (Type $type) use ($methodName): bool {
90
92
if ($ class ->isDeprecated ()) {
91
93
$ classDescription = $ class ->getDeprecatedDescription ();
92
94
if ($ classDescription === null ) {
93
- $ errors [] = sprintf (
94
- 'Call to method %s() of deprecated class %s. ' ,
95
+ $ errors [] = RuleErrorBuilder:: message ( sprintf (
96
+ 'Call to method %s() of deprecated %s %s. ' ,
95
97
$ methodReflection ->getName (),
98
+ strtolower ($ methodReflection ->getDeclaringClass ()->getClassTypeDescription ()),
96
99
$ methodReflection ->getDeclaringClass ()->getName ()
97
- );
100
+ ))-> identifier ( sprintf ( ' staticMethod.deprecated%s ' , $ methodReflection -> getDeclaringClass ()-> getClassTypeDescription ()))-> build () ;
98
101
} else {
99
- $ errors [] = sprintf (
100
- "Call to method %s() of deprecated class %s: \n%s " ,
102
+ $ errors [] = RuleErrorBuilder:: message ( sprintf (
103
+ "Call to method %s() of deprecated %s %s: \n%s " ,
101
104
$ methodReflection ->getName (),
105
+ strtolower ($ methodReflection ->getDeclaringClass ()->getClassTypeDescription ()),
102
106
$ methodReflection ->getDeclaringClass ()->getName (),
103
107
$ classDescription
104
- );
108
+ ))-> identifier ( sprintf ( ' staticMethod.deprecated%s ' , $ methodReflection -> getDeclaringClass ()-> getClassTypeDescription ()))-> build () ;
105
109
}
106
110
}
107
111
@@ -111,18 +115,20 @@ static function (Type $type) use ($methodName): bool {
111
115
112
116
$ description = $ methodReflection ->getDeprecatedDescription ();
113
117
if ($ description === null ) {
114
- $ errors [] = sprintf (
115
- 'Call to deprecated method %s() of class %s. ' ,
118
+ $ errors [] = RuleErrorBuilder:: message ( sprintf (
119
+ 'Call to deprecated method %s() of %s %s. ' ,
116
120
$ methodReflection ->getName (),
121
+ strtolower ($ methodReflection ->getDeclaringClass ()->getClassTypeDescription ()),
117
122
$ methodReflection ->getDeclaringClass ()->getName ()
118
- );
123
+ ))-> identifier ( ' staticMethod.deprecated ' )-> build () ;
119
124
} else {
120
- $ errors [] = sprintf (
121
- "Call to deprecated method %s() of class %s: \n%s " ,
125
+ $ errors [] = RuleErrorBuilder:: message ( sprintf (
126
+ "Call to deprecated method %s() of %s %s: \n%s " ,
122
127
$ methodReflection ->getName (),
128
+ strtolower ($ methodReflection ->getDeclaringClass ()->getClassTypeDescription ()),
123
129
$ methodReflection ->getDeclaringClass ()->getName (),
124
130
$ description
125
- );
131
+ ))-> identifier ( ' staticMethod.deprecated ' )-> build () ;
126
132
}
127
133
}
128
134
0 commit comments