| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | 6 | protected static function deprecatedMethod(string $old_method, string $new_class, string $new_method): void |
|
| 8 | { |
||
| 9 | 6 | $namespace = static::getDeprecatedNamespace(); |
|
| 10 | |||
| 11 | 6 | static::deprecated( |
|
| 12 | 6 | 'The %s::%s() method has been deprecated and will be removed in version 3.0, use %s::%s() instead.', |
|
| 13 | $namespace, $old_method, $new_class, $new_method |
||
| 14 | ); |
||
| 27 |