File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
projects/plugins/wpcloud-sso/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,11 @@ function () {
4949
5050 // Read persisistent data and establish connection.
5151 if ( class_exists ( 'Atomic_Persistent_Data ' ) ) {
52- $ persistent_data = new Atomic_Persistent_Data ();
52+ $ persistent_data = new Atomic_Persistent_Data (); // @phan-suppress-current-line PhanUndeclaredClassMethod -- wrapped in a class_exists() check
5353 $ jetpack_config = array (
54- 'blog_id ' => $ persistent_data ->wpcom_blog_id ,
55- 'blog_token ' => $ persistent_data ->jetpack_blog_token ,
56- 'primary_user_token ' => $ persistent_data ->jetpack_user_token ,
54+ 'blog_id ' => $ persistent_data ->wpcom_blog_id , // @phan-suppress-current-line PhanUndeclaredClassProperty -- wrapped in a class_exists() check
55+ 'blog_token ' => $ persistent_data ->jetpack_blog_token , // @phan-suppress-current-line PhanUndeclaredClassProperty -- wrapped in a class_exists() check
56+ 'primary_user_token ' => $ persistent_data ->jetpack_user_token , // @phan-suppress-current-line PhanUndeclaredClassProperty -- wrapped in a class_exists() check
5757 );
5858
5959 if ( ! class_exists ( 'Jetpack_Options ' ) ) {
You can’t perform that action at this time.
0 commit comments