| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function __callStatic( $method, $args ) { |
||
| 11 | if ( method_exists( parent, $method ) ) { |
||
| 12 | _deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' ); |
||
| 13 | call_user_func_array( [ parent, $method ], $args ); |
||
| 14 | } |
||
| 15 | throw new Exception( "Method doesn't exist" ); |
||
| 16 | } |
||
| 17 | |||
| 19 |