芝麻web文件管理V1.00
编辑当前文件:/home4/randall/public_html/adriancespedes.com/wp-content/plugins/jetpack/class.photon.php
$name( ...$arguments ); } else { // Handle cases where the method is not found throw new Exception( sprintf( 'Undefined method: %s', esc_html( $name ) ) ); } } /** * Forward all static method calls to the Image_CDN class. * * @param string $name The name of the method. * @param array $arguments The arguments to pass to the method. * * @throws Exception If the method is not found. */ public static function __callStatic( $name, $arguments ) { if ( method_exists( Image_CDN::class, $name ) ) { _deprecated_function( __CLASS__ . '::' . esc_html( $name ), 'jetpack-12.2', 'Automattic\Jetpack\Image_CDN\Image_CDN::' . esc_html( $name ) ); return Image_CDN::$name( ...$arguments ); } else { // Handle cases where the method is not found throw new Exception( sprintf( 'Undefined static method: %s', esc_html( $name ) ) ); } } }