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