1 | <?php |
||
9 | class Jetpack_Client_Server { |
||
10 | |||
11 | /** |
||
12 | * Handle the client authorization error. |
||
13 | * |
||
14 | * @param WP_Error $error The error object. |
||
15 | */ |
||
16 | public static function client_authorize_error( $error ) { |
||
21 | |||
22 | /** |
||
23 | * The user is already authorized, we set the Jetpack state and adjust the redirect URL. |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | public static function client_authorize_already_authorized_url() { |
||
31 | |||
32 | /** |
||
33 | * The authorization processing has started. |
||
34 | */ |
||
35 | public static function client_authorize_processing() { |
||
38 | |||
39 | /** |
||
40 | * The authorization has completed (successfully or not), and the redirect URL is empty. |
||
41 | * We set the Jetpack Dashboard as the default URL. |
||
42 | * |
||
43 | * @return string |
||
44 | */ |
||
45 | public static function client_authorize_fallback_url() { |
||
48 | |||
49 | /** |
||
50 | * Authorization handler. |
||
51 | * |
||
52 | * @deprecated since Jetpack 9.5.0 |
||
53 | * @see Webhooks::handle_authorize() |
||
54 | */ |
||
55 | public function client_authorize() { |
||
59 | |||
60 | public static function deactivate_plugin( $probable_file, $probable_title ) { |
||
79 | |||
80 | /** |
||
81 | * @deprecated since Jetpack 9.5.0 |
||
82 | * @see Jetpack::init() |
||
83 | */ |
||
84 | public function get_jetpack() { |
||
88 | |||
89 | /** |
||
90 | * No longer used. |
||
91 | * |
||
92 | * @deprecated since Jetpack 9.5.0 |
||
93 | */ |
||
94 | public function do_exit() { |
||
98 | } |
||
99 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.