Make WordPress Core

Opened 8 years ago

Closed 8 years ago

#38307 closed defect (bug) (invalid)

WPTests | PHP7 | clone not object

Reported by: gregoireduchenews's profile gregoireduchenews Owned by:
Milestone: Priority: normal
Severity: normal Version:
Component: Build/Test Tools Keywords:
Focuses: Cc:

Description

Hi there,

PHPUnit are failing with PHP7 with the following error:

Error: clone method called on non-object

/srv/www/wp-tests/tests/phpunit/includes/testcase.php:238
/srv/www/wp-tests/tests/phpunit/includes/testcase.php:98

Change History (5)

#1 @pento
8 years ago

  • Component changed from General to Build/Test Tools
  • Version changed from 4.6.1 to trunk

Thanks for the bug report, @gregoireduchenews!

This isn't failing in Travis, which suggests it's a plugin you have installed that's causing the failure.

In particular, it looks like it's a plugin that directly writes to the $wp_filter global, which will no longer work in WordPress 4.7.

Could you confirm if you have any plugins installed, and what they are?

#2 @gregoireduchenews
8 years ago

Hi there

I deactivated all of the plugins, removed the plugin folder, removed the mu-plugin folder, and ran only that test that does the following:

<?php
<?php

namespace NewsCorpAU\NLM\Kidspot\Tests;

class TwigTester extends \WP_UnitTestCase {

        /**
         * @test
         */
        public function assert_class_is_set_up() {
                $this->assertTrue( true );
        }
}

Same result.
I have dumped the $GLOBALSwp_filter?, below is the result.
Have I missed something?

<?php
Installing...
Installing network...
Running as multisite...
Not running ajax tests. To execute these, use --group ajax.
Not running ms-files tests. To execute these, use --group ms-files.
Not running external-http tests. To execute these, use --group external-http.
Not running external-oembed tests. To execute these, use --group external-oembed.
PHPUnit 5.6.1 by Sebastian Bergmann and contributors.

E                                                                   1 / 1 (100%)array(350) {
  ["site_option_active_sitewide_plugins"]=>
  array(1) {
    [10]=>
    array(1) {
      ["xwp_filter_active_plugins_for_phpunit"]=>
      array(2) {
        ["function"]=>
        string(37) "xwp_filter_active_plugins_for_phpunit"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["option_active_plugins"]=>
  array(1) {
    [10]=>
    array(1) {
      ["xwp_filter_active_plugins_for_phpunit"]=>
      array(2) {
        ["function"]=>
        string(37) "xwp_filter_active_plugins_for_phpunit"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["muplugins_loaded"]=>
  array(1) {
    [10]=>
    array(1) {
      ["xwp_unit_test_load_plugin_file"]=>
      array(2) {
        ["function"]=>
        string(30) "xwp_unit_test_load_plugin_file"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_die_handler"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_die_handler_filter"]=>
      array(2) {
        ["function"]=>
        string(22) "_wp_die_handler_filter"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_term_name"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_comment_author_name"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_name"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_target"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_rel"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_user_display_name"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_user_first_name"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_user_last_name"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_user_nickname"]=>
  array(2) {
    [10]=>
    array(2) {
      ["sanitize_text_field"]=>
      array(2) {
        ["function"]=>
        string(19) "sanitize_text_field"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["term_name"]=>
  array(2) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_author_name"]=>
  array(1) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_name"]=>
  array(2) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_target"]=>
  array(1) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_rel"]=>
  array(1) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_display_name"]=>
  array(1) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_first_name"]=>
  array(1) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_last_name"]=>
  array(1) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_nickname"]=>
  array(1) {
    [30]=>
    array(1) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_term_description"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_description"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_notes"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_user_description"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_comment_author_email"]=>
  array(1) {
    [10]=>
    array(3) {
      ["trim"]=>
      array(2) {
        ["function"]=>
        string(4) "trim"
        ["accepted_args"]=>
        int(1)
      }
      ["sanitize_email"]=>
      array(2) {
        ["function"]=>
        string(14) "sanitize_email"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_user_email"]=>
  array(1) {
    [10]=>
    array(3) {
      ["trim"]=>
      array(2) {
        ["function"]=>
        string(4) "trim"
        ["accepted_args"]=>
        int(1)
      }
      ["sanitize_email"]=>
      array(2) {
        ["function"]=>
        string(14) "sanitize_email"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_author_email"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_email"]=>
      array(2) {
        ["function"]=>
        string(14) "sanitize_email"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_email"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_email"]=>
      array(2) {
        ["function"]=>
        string(14) "sanitize_email"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_comment_author_url"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wp_strip_all_tags"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_strip_all_tags"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_url_raw"]=>
      array(2) {
        ["function"]=>
        string(11) "esc_url_raw"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_user_url"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wp_strip_all_tags"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_strip_all_tags"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_url_raw"]=>
      array(2) {
        ["function"]=>
        string(11) "esc_url_raw"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_url"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wp_strip_all_tags"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_strip_all_tags"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_url_raw"]=>
      array(2) {
        ["function"]=>
        string(11) "esc_url_raw"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_image"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wp_strip_all_tags"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_strip_all_tags"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_url_raw"]=>
      array(2) {
        ["function"]=>
        string(11) "esc_url_raw"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_link_rss"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wp_strip_all_tags"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_strip_all_tags"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_url_raw"]=>
      array(2) {
        ["function"]=>
        string(11) "esc_url_raw"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_post_guid"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wp_strip_all_tags"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_strip_all_tags"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_url_raw"]=>
      array(2) {
        ["function"]=>
        string(11) "esc_url_raw"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_url"]=>
  array(1) {
    [10]=>
    array(1) {
      ["esc_url"]=>
      array(2) {
        ["function"]=>
        string(7) "esc_url"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_url"]=>
  array(1) {
    [10]=>
    array(1) {
      ["esc_url"]=>
      array(2) {
        ["function"]=>
        string(7) "esc_url"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_image"]=>
  array(1) {
    [10]=>
    array(1) {
      ["esc_url"]=>
      array(2) {
        ["function"]=>
        string(7) "esc_url"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_rss"]=>
  array(1) {
    [10]=>
    array(1) {
      ["esc_url"]=>
      array(2) {
        ["function"]=>
        string(7) "esc_url"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_url"]=>
  array(1) {
    [10]=>
    array(1) {
      ["esc_url"]=>
      array(2) {
        ["function"]=>
        string(7) "esc_url"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["post_guid"]=>
  array(1) {
    [10]=>
    array(1) {
      ["esc_url"]=>
      array(2) {
        ["function"]=>
        string(7) "esc_url"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_term_slug"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_title"]=>
      array(2) {
        ["function"]=>
        string(14) "sanitize_title"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_post_type"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_key"]=>
      array(2) {
        ["function"]=>
        string(12) "sanitize_key"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_post_status"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_key"]=>
      array(2) {
        ["function"]=>
        string(12) "sanitize_key"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_post_comment_status"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_key"]=>
      array(2) {
        ["function"]=>
        string(12) "sanitize_key"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_post_ping_status"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_key"]=>
      array(2) {
        ["function"]=>
        string(12) "sanitize_key"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_post_mime_type"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_mime_type"]=>
      array(2) {
        ["function"]=>
        string(18) "sanitize_mime_type"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["post_mime_type"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_mime_type"]=>
      array(2) {
        ["function"]=>
        string(18) "sanitize_mime_type"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["register_meta_args"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_register_meta_args_whitelist"]=>
      array(2) {
        ["function"]=>
        string(32) "_wp_register_meta_args_whitelist"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["content_save_pre"]=>
  array(2) {
    [10]=>
    array(2) {
      ["convert_invalid_entities"]=>
      array(2) {
        ["function"]=>
        string(24) "convert_invalid_entities"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_post_kses"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_filter_post_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [50]=>
    array(1) {
      ["balanceTags"]=>
      array(2) {
        ["function"]=>
        string(11) "balanceTags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["excerpt_save_pre"]=>
  array(2) {
    [10]=>
    array(2) {
      ["convert_invalid_entities"]=>
      array(2) {
        ["function"]=>
        string(24) "convert_invalid_entities"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_post_kses"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_filter_post_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [50]=>
    array(1) {
      ["balanceTags"]=>
      array(2) {
        ["function"]=>
        string(11) "balanceTags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_save_pre"]=>
  array(2) {
    [10]=>
    array(1) {
      ["convert_invalid_entities"]=>
      array(2) {
        ["function"]=>
        string(24) "convert_invalid_entities"
        ["accepted_args"]=>
        int(1)
      }
    }
    [50]=>
    array(1) {
      ["balanceTags"]=>
      array(2) {
        ["function"]=>
        string(11) "balanceTags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_comment_content"]=>
  array(3) {
    [10]=>
    array(2) {
      ["convert_invalid_entities"]=>
      array(2) {
        ["function"]=>
        string(24) "convert_invalid_entities"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
    [50]=>
    array(1) {
      ["balanceTags"]=>
      array(2) {
        ["function"]=>
        string(11) "balanceTags"
        ["accepted_args"]=>
        int(1)
      }
    }
    [15]=>
    array(1) {
      ["wp_rel_nofollow"]=>
      array(2) {
        ["function"]=>
        string(15) "wp_rel_nofollow"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_author"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_description"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["link_notes"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["bloginfo"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_title"]=>
  array(2) {
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
    [11]=>
    array(1) {
      ["capital_P_dangit"]=>
      array(2) {
        ["function"]=>
        string(16) "capital_P_dangit"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["widget_title"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_content"]=>
  array(4) {
    [11]=>
    array(2) {
      ["capital_P_dangit"]=>
      array(2) {
        ["function"]=>
        string(16) "capital_P_dangit"
        ["accepted_args"]=>
        int(1)
      }
      ["do_shortcode"]=>
      array(2) {
        ["function"]=>
        string(12) "do_shortcode"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(5) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["wpautop"]=>
      array(2) {
        ["function"]=>
        string(7) "wpautop"
        ["accepted_args"]=>
        int(1)
      }
      ["shortcode_unautop"]=>
      array(2) {
        ["function"]=>
        string(17) "shortcode_unautop"
        ["accepted_args"]=>
        int(1)
      }
      ["prepend_attachment"]=>
      array(2) {
        ["function"]=>
        string(18) "prepend_attachment"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_make_content_images_responsive"]=>
      array(2) {
        ["function"]=>
        string(33) "wp_make_content_images_responsive"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["convert_smilies"]=>
      array(2) {
        ["function"]=>
        string(15) "convert_smilies"
        ["accepted_args"]=>
        int(1)
      }
    }
    [8]=>
    array(2) {
      ["0000000058bb06fb0000000048306e80run_shortcode"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Embed)#117 (7) {
            ["handlers"]=>
            array(2) {
              [10]=>
              array(1) {
                ["youtube_embed_url"]=>
                array(2) {
                  ["regex"]=>
                  string(51) "#https?://(www.)?youtube\.com/(?:v|embed)/([^/]+)#i"
                  ["callback"]=>
                  string(24) "wp_embed_handler_youtube"
                }
              }
              [9999]=>
              array(2) {
                ["audio"]=>
                array(2) {
                  ["regex"]=>
                  string(40) "#^https?://.+?\.(mp3|ogg|wma|m4a|wav)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_audio"
                }
                ["video"]=>
                array(2) {
                  ["regex"]=>
                  string(45) "#^https?://.+?\.(mp4|m4v|webm|ogv|wmv|flv)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_video"
                }
              }
            }
            ["post_ID"]=>
            NULL
            ["usecache"]=>
            bool(true)
            ["linkifunknown"]=>
            bool(true)
            ["last_attr"]=>
            array(0) {
            }
            ["last_url"]=>
            string(0) ""
            ["return_false_on_fail"]=>
            bool(false)
          }
          [1]=>
          string(13) "run_shortcode"
        }
        ["accepted_args"]=>
        int(1)
      }
      ["0000000058bb06fb0000000048306e80autoembed"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Embed)#117 (7) {
            ["handlers"]=>
            array(2) {
              [10]=>
              array(1) {
                ["youtube_embed_url"]=>
                array(2) {
                  ["regex"]=>
                  string(51) "#https?://(www.)?youtube\.com/(?:v|embed)/([^/]+)#i"
                  ["callback"]=>
                  string(24) "wp_embed_handler_youtube"
                }
              }
              [9999]=>
              array(2) {
                ["audio"]=>
                array(2) {
                  ["regex"]=>
                  string(40) "#^https?://.+?\.(mp3|ogg|wma|m4a|wav)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_audio"
                }
                ["video"]=>
                array(2) {
                  ["regex"]=>
                  string(45) "#^https?://.+?\.(mp4|m4v|webm|ogv|wmv|flv)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_video"
                }
              }
            }
            ["post_ID"]=>
            NULL
            ["usecache"]=>
            bool(true)
            ["linkifunknown"]=>
            bool(true)
            ["last_attr"]=>
            array(0) {
            }
            ["last_url"]=>
            string(0) ""
            ["return_false_on_fail"]=>
            bool(false)
          }
          [1]=>
          string(9) "autoembed"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_title"]=>
  array(2) {
    [11]=>
    array(1) {
      ["capital_P_dangit"]=>
      array(2) {
        ["function"]=>
        string(16) "capital_P_dangit"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["trim"]=>
      array(2) {
        ["function"]=>
        string(4) "trim"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_text"]=>
  array(6) {
    [31]=>
    array(1) {
      ["capital_P_dangit"]=>
      array(2) {
        ["function"]=>
        string(16) "capital_P_dangit"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(2) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
    }
    [9]=>
    array(1) {
      ["make_clickable"]=>
      array(2) {
        ["function"]=>
        string(14) "make_clickable"
        ["accepted_args"]=>
        int(1)
      }
    }
    [25]=>
    array(1) {
      ["force_balance_tags"]=>
      array(2) {
        ["function"]=>
        string(18) "force_balance_tags"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["convert_smilies"]=>
      array(2) {
        ["function"]=>
        string(15) "convert_smilies"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["wpautop"]=>
      array(2) {
        ["function"]=>
        string(7) "wpautop"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["single_post_title"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["strip_tags"]=>
      array(2) {
        ["function"]=>
        string(10) "strip_tags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["single_cat_title"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["strip_tags"]=>
      array(2) {
        ["function"]=>
        string(10) "strip_tags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["single_tag_title"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["strip_tags"]=>
      array(2) {
        ["function"]=>
        string(10) "strip_tags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["single_month_title"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["strip_tags"]=>
      array(2) {
        ["function"]=>
        string(10) "strip_tags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["nav_menu_attr_title"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["strip_tags"]=>
      array(2) {
        ["function"]=>
        string(10) "strip_tags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["nav_menu_description"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["strip_tags"]=>
      array(2) {
        ["function"]=>
        string(10) "strip_tags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["term_description"]=>
  array(1) {
    [10]=>
    array(4) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["wpautop"]=>
      array(2) {
        ["function"]=>
        string(7) "wpautop"
        ["accepted_args"]=>
        int(1)
      }
      ["shortcode_unautop"]=>
      array(2) {
        ["function"]=>
        string(17) "shortcode_unautop"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["term_name_rss"]=>
  array(1) {
    [10]=>
    array(1) {
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_insert_post_parent"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_check_post_hierarchy_for_loops"]=>
      array(2) {
        ["function"]=>
        string(33) "wp_check_post_hierarchy_for_loops"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["wp_update_term_parent"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_check_term_hierarchy_for_loops"]=>
      array(2) {
        ["function"]=>
        string(33) "wp_check_term_hierarchy_for_loops"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["the_excerpt"]=>
  array(1) {
    [10]=>
    array(5) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_smilies"]=>
      array(2) {
        ["function"]=>
        string(15) "convert_smilies"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["wpautop"]=>
      array(2) {
        ["function"]=>
        string(7) "wpautop"
        ["accepted_args"]=>
        int(1)
      }
      ["shortcode_unautop"]=>
      array(2) {
        ["function"]=>
        string(17) "shortcode_unautop"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["get_the_excerpt"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_trim_excerpt"]=>
      array(2) {
        ["function"]=>
        string(15) "wp_trim_excerpt"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_post_thumbnail_caption"]=>
  array(1) {
    [10]=>
    array(3) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_smilies"]=>
      array(2) {
        ["function"]=>
        string(15) "convert_smilies"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_excerpt"]=>
  array(1) {
    [10]=>
    array(1) {
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["list_cats"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_sprintf"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_sprintf_l"]=>
      array(2) {
        ["function"]=>
        string(12) "wp_sprintf_l"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["widget_text"]=>
  array(1) {
    [10]=>
    array(1) {
      ["balanceTags"]=>
      array(2) {
        ["function"]=>
        string(11) "balanceTags"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["date_i18n"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_decline_date"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_maybe_decline_date"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_title_rss"]=>
  array(2) {
    [10]=>
    array(2) {
      ["strip_tags"]=>
      array(2) {
        ["function"]=>
        string(10) "strip_tags"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
    }
    [8]=>
    array(1) {
      ["ent2ncr"]=>
      array(2) {
        ["function"]=>
        string(7) "ent2ncr"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_content_rss"]=>
  array(1) {
    [8]=>
    array(1) {
      ["ent2ncr"]=>
      array(2) {
        ["function"]=>
        string(7) "ent2ncr"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_content_feed"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wp_staticize_emoji"]=>
      array(2) {
        ["function"]=>
        string(18) "wp_staticize_emoji"
        ["accepted_args"]=>
        int(1)
      }
      ["_oembed_filter_feed_content"]=>
      array(2) {
        ["function"]=>
        string(27) "_oembed_filter_feed_content"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_excerpt_rss"]=>
  array(2) {
    [10]=>
    array(1) {
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
    }
    [8]=>
    array(1) {
      ["ent2ncr"]=>
      array(2) {
        ["function"]=>
        string(7) "ent2ncr"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_author_rss"]=>
  array(1) {
    [8]=>
    array(1) {
      ["ent2ncr"]=>
      array(2) {
        ["function"]=>
        string(7) "ent2ncr"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_text_rss"]=>
  array(2) {
    [8]=>
    array(1) {
      ["ent2ncr"]=>
      array(2) {
        ["function"]=>
        string(7) "ent2ncr"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(2) {
      ["esc_html"]=>
      array(2) {
        ["function"]=>
        string(8) "esc_html"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_staticize_emoji"]=>
      array(2) {
        ["function"]=>
        string(18) "wp_staticize_emoji"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["bloginfo_rss"]=>
  array(1) {
    [8]=>
    array(1) {
      ["ent2ncr"]=>
      array(2) {
        ["function"]=>
        string(7) "ent2ncr"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_author"]=>
  array(1) {
    [8]=>
    array(1) {
      ["ent2ncr"]=>
      array(2) {
        ["function"]=>
        string(7) "ent2ncr"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_guid"]=>
  array(1) {
    [10]=>
    array(1) {
      ["esc_url"]=>
      array(2) {
        ["function"]=>
        string(7) "esc_url"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_mail"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_staticize_emoji_for_email"]=>
      array(2) {
        ["function"]=>
        string(28) "wp_staticize_emoji_for_email"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["option_ping_sites"]=>
  array(1) {
    [10]=>
    array(1) {
      ["privacy_ping_filter"]=>
      array(2) {
        ["function"]=>
        string(19) "privacy_ping_filter"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["option_blog_charset"]=>
  array(1) {
    [10]=>
    array(2) {
      ["_wp_specialchars"]=>
      array(2) {
        ["function"]=>
        string(16) "_wp_specialchars"
        ["accepted_args"]=>
        int(1)
      }
      ["_canonical_charset"]=>
      array(2) {
        ["function"]=>
        string(18) "_canonical_charset"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["option_home"]=>
  array(0) {
  }
  ["option_siteurl"]=>
  array(0) {
  }
  ["tiny_mce_before_init"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_mce_set_direction"]=>
      array(2) {
        ["function"]=>
        string(18) "_mce_set_direction"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["teeny_mce_before_init"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_mce_set_direction"]=>
      array(2) {
        ["function"]=>
        string(18) "_mce_set_direction"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pre_kses"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_pre_kses_less_than"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_pre_kses_less_than"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["sanitize_title"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_title_with_dashes"]=>
      array(2) {
        ["function"]=>
        string(26) "sanitize_title_with_dashes"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["check_comment_flood"]=>
  array(1) {
    [10]=>
    array(1) {
      ["check_comment_flood_db"]=>
      array(2) {
        ["function"]=>
        string(22) "check_comment_flood_db"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["comment_flood_filter"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_throttle_comment_flood"]=>
      array(2) {
        ["function"]=>
        string(25) "wp_throttle_comment_flood"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["comment_email"]=>
  array(1) {
    [10]=>
    array(1) {
      ["antispambot"]=>
      array(2) {
        ["function"]=>
        string(11) "antispambot"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["option_tag_base"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_filter_taxonomy_base"]=>
      array(2) {
        ["function"]=>
        string(24) "_wp_filter_taxonomy_base"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["option_category_base"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_filter_taxonomy_base"]=>
      array(2) {
        ["function"]=>
        string(24) "_wp_filter_taxonomy_base"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_posts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_close_comments_for_old_posts"]=>
      array(2) {
        ["function"]=>
        string(29) "_close_comments_for_old_posts"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["comments_open"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_close_comments_for_old_post"]=>
      array(2) {
        ["function"]=>
        string(28) "_close_comments_for_old_post"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["pings_open"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_close_comments_for_old_post"]=>
      array(2) {
        ["function"]=>
        string(28) "_close_comments_for_old_post"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["editable_slug"]=>
  array(1) {
    [10]=>
    array(2) {
      ["urldecode"]=>
      array(2) {
        ["function"]=>
        string(9) "urldecode"
        ["accepted_args"]=>
        int(1)
      }
      ["esc_textarea"]=>
      array(2) {
        ["function"]=>
        string(12) "esc_textarea"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["nav_menu_meta_box_object"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_nav_menu_meta_box_object"]=>
      array(2) {
        ["function"]=>
        string(28) "_wp_nav_menu_meta_box_object"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["pingback_ping_source_uri"]=>
  array(1) {
    [10]=>
    array(1) {
      ["pingback_ping_source_uri"]=>
      array(2) {
        ["function"]=>
        string(24) "pingback_ping_source_uri"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["xmlrpc_pingback_error"]=>
  array(1) {
    [10]=>
    array(1) {
      ["xmlrpc_pingback_error"]=>
      array(2) {
        ["function"]=>
        string(21) "xmlrpc_pingback_error"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["title_save_pre"]=>
  array(1) {
    [10]=>
    array(2) {
      ["trim"]=>
      array(2) {
        ["function"]=>
        string(4) "trim"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_filter_kses"]=>
      array(2) {
        ["function"]=>
        string(14) "wp_filter_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["http_request_host_is_external"]=>
  array(2) {
    [10]=>
    array(1) {
      ["allowed_http_request_hosts"]=>
      array(2) {
        ["function"]=>
        string(26) "allowed_http_request_hosts"
        ["accepted_args"]=>
        int(2)
      }
    }
    [20]=>
    array(1) {
      ["ms_allowed_http_request_hosts"]=>
      array(2) {
        ["function"]=>
        string(29) "ms_allowed_http_request_hosts"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["xmlrpc_rsd_apis"]=>
  array(1) {
    [10]=>
    array(1) {
      ["rest_output_rsd"]=>
      array(2) {
        ["function"]=>
        string(15) "rest_output_rsd"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_head"]=>
  array(9) {
    [10]=>
    array(14) {
      ["rest_output_link_wp_head"]=>
      array(2) {
        ["function"]=>
        string(24) "rest_output_link_wp_head"
        ["accepted_args"]=>
        int(0)
      }
      ["rsd_link"]=>
      array(2) {
        ["function"]=>
        string(8) "rsd_link"
        ["accepted_args"]=>
        int(1)
      }
      ["wlwmanifest_link"]=>
      array(2) {
        ["function"]=>
        string(16) "wlwmanifest_link"
        ["accepted_args"]=>
        int(1)
      }
      ["adjacent_posts_rel_link_wp_head"]=>
      array(2) {
        ["function"]=>
        string(31) "adjacent_posts_rel_link_wp_head"
        ["accepted_args"]=>
        int(0)
      }
      ["locale_stylesheet"]=>
      array(2) {
        ["function"]=>
        string(17) "locale_stylesheet"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_generator"]=>
      array(2) {
        ["function"]=>
        string(12) "wp_generator"
        ["accepted_args"]=>
        int(1)
      }
      ["rel_canonical"]=>
      array(2) {
        ["function"]=>
        string(13) "rel_canonical"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_shortlink_wp_head"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_shortlink_wp_head"
        ["accepted_args"]=>
        int(0)
      }
      ["_custom_logo_header_styles"]=>
      array(2) {
        ["function"]=>
        string(26) "_custom_logo_header_styles"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_oembed_add_discovery_links"]=>
      array(2) {
        ["function"]=>
        string(29) "wp_oembed_add_discovery_links"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_oembed_add_host_js"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_oembed_add_host_js"
        ["accepted_args"]=>
        int(1)
      }
      ["0000000058bb06b60000000048306e80recent_comments_style"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Widget_Recent_Comments)#56 (9) {
            ["id_base"]=>
            string(15) "recent-comments"
            ["name"]=>
            string(15) "Recent Comments"
            ["widget_options"]=>
            array(3) {
              ["classname"]=>
              string(22) "widget_recent_comments"
              ["customize_selective_refresh"]=>
              bool(true)
              ["description"]=>
              string(39) "Your site&#8217;s most recent comments."
            }
            ["control_options"]=>
            array(1) {
              ["id_base"]=>
              string(15) "recent-comments"
            }
            ["number"]=>
            int(2)
            ["id"]=>
            string(17) "recent-comments-2"
            ["updated"]=>
            bool(false)
            ["option_name"]=>
            string(22) "widget_recent-comments"
            ["alt_option_name"]=>
            string(22) "widget_recent_comments"
          }
          [1]=>
          string(21) "recent_comments_style"
        }
        ["accepted_args"]=>
        int(1)
      }
      ["twentyfifteen_header_style"]=>
      array(2) {
        ["function"]=>
        string(26) "twentyfifteen_header_style"
        ["accepted_args"]=>
        int(1)
      }
      ["_custom_background_cb"]=>
      array(2) {
        ["function"]=>
        string(21) "_custom_background_cb"
        ["accepted_args"]=>
        int(1)
      }
    }
    [1]=>
    array(4) {
      ["_wp_render_title_tag"]=>
      array(2) {
        ["function"]=>
        string(20) "_wp_render_title_tag"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_enqueue_scripts"]=>
      array(2) {
        ["function"]=>
        string(18) "wp_enqueue_scripts"
        ["accepted_args"]=>
        int(1)
      }
      ["noindex"]=>
      array(2) {
        ["function"]=>
        string(7) "noindex"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_post_preview_js"]=>
      array(2) {
        ["function"]=>
        string(18) "wp_post_preview_js"
        ["accepted_args"]=>
        int(1)
      }
    }
    [2]=>
    array(2) {
      ["wp_resource_hints"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_resource_hints"
        ["accepted_args"]=>
        int(1)
      }
      ["feed_links"]=>
      array(2) {
        ["function"]=>
        string(10) "feed_links"
        ["accepted_args"]=>
        int(1)
      }
    }
    [3]=>
    array(1) {
      ["feed_links_extra"]=>
      array(2) {
        ["function"]=>
        string(16) "feed_links_extra"
        ["accepted_args"]=>
        int(1)
      }
    }
    [7]=>
    array(1) {
      ["print_emoji_detection_script"]=>
      array(2) {
        ["function"]=>
        string(28) "print_emoji_detection_script"
        ["accepted_args"]=>
        int(1)
      }
    }
    [8]=>
    array(1) {
      ["wp_print_styles"]=>
      array(2) {
        ["function"]=>
        string(15) "wp_print_styles"
        ["accepted_args"]=>
        int(1)
      }
    }
    [9]=>
    array(1) {
      ["wp_print_head_scripts"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_print_head_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
    [99]=>
    array(1) {
      ["wp_site_icon"]=>
      array(2) {
        ["function"]=>
        string(12) "wp_site_icon"
        ["accepted_args"]=>
        int(1)
      }
    }
    [0]=>
    array(1) {
      ["twentyfifteen_javascript_detection"]=>
      array(2) {
        ["function"]=>
        string(34) "twentyfifteen_javascript_detection"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["template_redirect"]=>
  array(4) {
    [11]=>
    array(2) {
      ["rest_output_link_header"]=>
      array(2) {
        ["function"]=>
        string(23) "rest_output_link_header"
        ["accepted_args"]=>
        int(0)
      }
      ["wp_shortlink_header"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_shortlink_header"
        ["accepted_args"]=>
        int(0)
      }
    }
    [10]=>
    array(3) {
      ["wp_old_slug_redirect"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_old_slug_redirect"
        ["accepted_args"]=>
        int(1)
      }
      ["redirect_canonical"]=>
      array(2) {
        ["function"]=>
        string(18) "redirect_canonical"
        ["accepted_args"]=>
        int(1)
      }
      ["maybe_redirect_404"]=>
      array(2) {
        ["function"]=>
        string(18) "maybe_redirect_404"
        ["accepted_args"]=>
        int(1)
      }
    }
    [1000]=>
    array(1) {
      ["wp_redirect_admin_locations"]=>
      array(2) {
        ["function"]=>
        string(27) "wp_redirect_admin_locations"
        ["accepted_args"]=>
        int(1)
      }
    }
    [0]=>
    array(1) {
      ["_wp_admin_bar_init"]=>
      array(2) {
        ["function"]=>
        string(18) "_wp_admin_bar_init"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["auth_cookie_malformed"]=>
  array(1) {
    [10]=>
    array(1) {
      ["rest_cookie_collect_status"]=>
      array(2) {
        ["function"]=>
        string(26) "rest_cookie_collect_status"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["auth_cookie_expired"]=>
  array(1) {
    [10]=>
    array(1) {
      ["rest_cookie_collect_status"]=>
      array(2) {
        ["function"]=>
        string(26) "rest_cookie_collect_status"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["auth_cookie_bad_username"]=>
  array(1) {
    [10]=>
    array(1) {
      ["rest_cookie_collect_status"]=>
      array(2) {
        ["function"]=>
        string(26) "rest_cookie_collect_status"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["auth_cookie_bad_hash"]=>
  array(1) {
    [10]=>
    array(1) {
      ["rest_cookie_collect_status"]=>
      array(2) {
        ["function"]=>
        string(26) "rest_cookie_collect_status"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["auth_cookie_valid"]=>
  array(1) {
    [10]=>
    array(1) {
      ["rest_cookie_collect_status"]=>
      array(2) {
        ["function"]=>
        string(26) "rest_cookie_collect_status"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["rest_authentication_errors"]=>
  array(1) {
    [100]=>
    array(1) {
      ["rest_cookie_check_errors"]=>
      array(2) {
        ["function"]=>
        string(24) "rest_cookie_check_errors"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["publish_future_post"]=>
  array(1) {
    [10]=>
    array(1) {
      ["check_and_publish_future_post"]=>
      array(2) {
        ["function"]=>
        string(29) "check_and_publish_future_post"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_footer"]=>
  array(2) {
    [20]=>
    array(1) {
      ["wp_print_footer_scripts"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_print_footer_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
    [1000]=>
    array(1) {
      ["wp_admin_bar_render"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_admin_bar_render"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_print_footer_scripts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_footer_scripts"]=>
      array(2) {
        ["function"]=>
        string(18) "_wp_footer_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["init"]=>
  array(5) {
    [0]=>
    array(2) {
      ["create_initial_post_types"]=>
      array(2) {
        ["function"]=>
        string(25) "create_initial_post_types"
        ["accepted_args"]=>
        int(1)
      }
      ["create_initial_taxonomies"]=>
      array(2) {
        ["function"]=>
        string(25) "create_initial_taxonomies"
        ["accepted_args"]=>
        int(1)
      }
    }
    [1]=>
    array(1) {
      ["wp_widgets_init"]=>
      array(2) {
        ["function"]=>
        string(15) "wp_widgets_init"
        ["accepted_args"]=>
        int(1)
      }
    }
    [5]=>
    array(1) {
      ["smilies_init"]=>
      array(2) {
        ["function"]=>
        string(12) "smilies_init"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(7) {
      ["wp_cron"]=>
      array(2) {
        ["function"]=>
        string(7) "wp_cron"
        ["accepted_args"]=>
        int(1)
      }
      ["_show_post_preview"]=>
      array(2) {
        ["function"]=>
        string(18) "_show_post_preview"
        ["accepted_args"]=>
        int(1)
      }
      ["rest_api_init"]=>
      array(2) {
        ["function"]=>
        string(13) "rest_api_init"
        ["accepted_args"]=>
        int(1)
      }
      ["kses_init"]=>
      array(2) {
        ["function"]=>
        string(9) "kses_init"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_schedule_update_checks"]=>
      array(2) {
        ["function"]=>
        string(25) "wp_schedule_update_checks"
        ["accepted_args"]=>
        int(1)
      }
      ["ms_subdomain_constants"]=>
      array(2) {
        ["function"]=>
        string(22) "ms_subdomain_constants"
        ["accepted_args"]=>
        int(1)
      }
      ["maybe_add_existing_user_to_blog"]=>
      array(2) {
        ["function"]=>
        string(31) "maybe_add_existing_user_to_blog"
        ["accepted_args"]=>
        int(1)
      }
    }
    [99]=>
    array(1) {
      ["check_theme_switched"]=>
      array(2) {
        ["function"]=>
        string(20) "check_theme_switched"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["after_switch_theme"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_sidebars_changed"]=>
      array(2) {
        ["function"]=>
        string(20) "_wp_sidebars_changed"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_print_styles"]=>
  array(1) {
    [10]=>
    array(1) {
      ["print_emoji_styles"]=>
      array(2) {
        ["function"]=>
        string(18) "print_emoji_styles"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["login_head"]=>
  array(3) {
    [8]=>
    array(1) {
      ["wp_resource_hints"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_resource_hints"
        ["accepted_args"]=>
        int(1)
      }
    }
    [9]=>
    array(2) {
      ["wp_print_head_scripts"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_print_head_scripts"
        ["accepted_args"]=>
        int(1)
      }
      ["print_admin_styles"]=>
      array(2) {
        ["function"]=>
        string(18) "print_admin_styles"
        ["accepted_args"]=>
        int(1)
      }
    }
    [99]=>
    array(1) {
      ["wp_site_icon"]=>
      array(2) {
        ["function"]=>
        string(12) "wp_site_icon"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["login_footer"]=>
  array(1) {
    [20]=>
    array(1) {
      ["wp_print_footer_scripts"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_print_footer_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["login_init"]=>
  array(1) {
    [10]=>
    array(1) {
      ["send_frame_options_header"]=>
      array(2) {
        ["function"]=>
        string(25) "send_frame_options_header"
        ["accepted_args"]=>
        int(0)
      }
    }
  }
  ["rss2_head"]=>
  array(1) {
    [10]=>
    array(2) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
      ["rss2_site_icon"]=>
      array(2) {
        ["function"]=>
        string(14) "rss2_site_icon"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["commentsrss2_head"]=>
  array(1) {
    [10]=>
    array(1) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["rss_head"]=>
  array(1) {
    [10]=>
    array(1) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["rdf_header"]=>
  array(1) {
    [10]=>
    array(1) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["atom_head"]=>
  array(1) {
    [10]=>
    array(2) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
      ["atom_site_icon"]=>
      array(2) {
        ["function"]=>
        string(14) "atom_site_icon"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comments_atom_head"]=>
  array(1) {
    [10]=>
    array(1) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["opml_head"]=>
  array(1) {
    [10]=>
    array(1) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["app_head"]=>
  array(1) {
    [10]=>
    array(1) {
      ["the_generator"]=>
      array(2) {
        ["function"]=>
        string(13) "the_generator"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["do_feed_rdf"]=>
  array(1) {
    [10]=>
    array(1) {
      ["do_feed_rdf"]=>
      array(2) {
        ["function"]=>
        string(11) "do_feed_rdf"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["do_feed_rss"]=>
  array(1) {
    [10]=>
    array(1) {
      ["do_feed_rss"]=>
      array(2) {
        ["function"]=>
        string(11) "do_feed_rss"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["do_feed_rss2"]=>
  array(1) {
    [10]=>
    array(1) {
      ["do_feed_rss2"]=>
      array(2) {
        ["function"]=>
        string(12) "do_feed_rss2"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["do_feed_atom"]=>
  array(1) {
    [10]=>
    array(1) {
      ["do_feed_atom"]=>
      array(2) {
        ["function"]=>
        string(12) "do_feed_atom"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["do_pings"]=>
  array(1) {
    [10]=>
    array(1) {
      ["do_all_pings"]=>
      array(2) {
        ["function"]=>
        string(12) "do_all_pings"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["do_robots"]=>
  array(1) {
    [10]=>
    array(1) {
      ["do_robots"]=>
      array(2) {
        ["function"]=>
        string(9) "do_robots"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["set_comment_cookies"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_set_comment_cookies"]=>
      array(2) {
        ["function"]=>
        string(22) "wp_set_comment_cookies"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["sanitize_comment_cookies"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sanitize_comment_cookies"]=>
      array(2) {
        ["function"]=>
        string(24) "sanitize_comment_cookies"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_print_scripts"]=>
  array(2) {
    [10]=>
    array(1) {
      ["print_emoji_detection_script"]=>
      array(2) {
        ["function"]=>
        string(28) "print_emoji_detection_script"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["print_head_scripts"]=>
      array(2) {
        ["function"]=>
        string(18) "print_head_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_print_footer_scripts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_footer_scripts"]=>
      array(2) {
        ["function"]=>
        string(18) "_wp_footer_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_print_styles"]=>
  array(3) {
    [10]=>
    array(1) {
      ["print_emoji_styles"]=>
      array(2) {
        ["function"]=>
        string(18) "print_emoji_styles"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["print_admin_styles"]=>
      array(2) {
        ["function"]=>
        string(18) "print_admin_styles"
        ["accepted_args"]=>
        int(1)
      }
    }
    [1]=>
    array(1) {
      ["wp_resource_hints"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_resource_hints"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["plugins_loaded"]=>
  array(2) {
    [0]=>
    array(2) {
      ["wp_maybe_load_widgets"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_maybe_load_widgets"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_maybe_load_embeds"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_maybe_load_embeds"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(1) {
      ["_wp_customize_include"]=>
      array(2) {
        ["function"]=>
        string(21) "_wp_customize_include"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["shutdown"]=>
  array(1) {
    [1]=>
    array(1) {
      ["wp_ob_end_flush_all"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_ob_end_flush_all"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["post_updated"]=>
  array(2) {
    [10]=>
    array(1) {
      ["wp_save_post_revision"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_save_post_revision"
        ["accepted_args"]=>
        int(1)
      }
    }
    [12]=>
    array(1) {
      ["wp_check_for_changed_slugs"]=>
      array(2) {
        ["function"]=>
        string(26) "wp_check_for_changed_slugs"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["publish_post"]=>
  array(1) {
    [5]=>
    array(1) {
      ["_publish_post_hook"]=>
      array(2) {
        ["function"]=>
        string(18) "_publish_post_hook"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["transition_post_status"]=>
  array(2) {
    [5]=>
    array(1) {
      ["_transition_post_status"]=>
      array(2) {
        ["function"]=>
        string(23) "_transition_post_status"
        ["accepted_args"]=>
        int(3)
      }
    }
    [10]=>
    array(5) {
      ["_update_term_count_on_transition_post_status"]=>
      array(2) {
        ["function"]=>
        string(44) "_update_term_count_on_transition_post_status"
        ["accepted_args"]=>
        int(3)
      }
      ["_wp_auto_add_pages_to_menu"]=>
      array(2) {
        ["function"]=>
        string(26) "_wp_auto_add_pages_to_menu"
        ["accepted_args"]=>
        int(3)
      }
      ["__clear_multi_author_cache"]=>
      array(2) {
        ["function"]=>
        string(26) "__clear_multi_author_cache"
        ["accepted_args"]=>
        int(1)
      }
      ["_update_blog_date_on_post_publish"]=>
      array(2) {
        ["function"]=>
        string(33) "_update_blog_date_on_post_publish"
        ["accepted_args"]=>
        int(3)
      }
      ["_update_posts_count_on_transition_post_status"]=>
      array(2) {
        ["function"]=>
        string(45) "_update_posts_count_on_transition_post_status"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["comment_form"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_comment_form_unfiltered_html_nonce"]=>
      array(2) {
        ["function"]=>
        string(37) "wp_comment_form_unfiltered_html_nonce"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_scheduled_delete"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_scheduled_delete"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_scheduled_delete"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_scheduled_auto_draft_delete"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_delete_auto_drafts"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_delete_auto_drafts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_init"]=>
  array(2) {
    [10]=>
    array(8) {
      ["send_frame_options_header"]=>
      array(2) {
        ["function"]=>
        string(25) "send_frame_options_header"
        ["accepted_args"]=>
        int(0)
      }
      ["_wp_check_for_scheduled_split_terms"]=>
      array(2) {
        ["function"]=>
        string(35) "_wp_check_for_scheduled_split_terms"
        ["accepted_args"]=>
        int(1)
      }
      ["_wp_admin_bar_init"]=>
      array(2) {
        ["function"]=>
        string(18) "_wp_admin_bar_init"
        ["accepted_args"]=>
        int(1)
      }
      ["_maybe_update_core"]=>
      array(2) {
        ["function"]=>
        string(18) "_maybe_update_core"
        ["accepted_args"]=>
        int(1)
      }
      ["_maybe_update_plugins"]=>
      array(2) {
        ["function"]=>
        string(21) "_maybe_update_plugins"
        ["accepted_args"]=>
        int(1)
      }
      ["_maybe_update_themes"]=>
      array(2) {
        ["function"]=>
        string(20) "_maybe_update_themes"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_schedule_update_network_counts"]=>
      array(2) {
        ["function"]=>
        string(33) "wp_schedule_update_network_counts"
        ["accepted_args"]=>
        int(1)
      }
      ["default_password_nag_handler"]=>
      array(2) {
        ["function"]=>
        string(28) "default_password_nag_handler"
        ["accepted_args"]=>
        int(1)
      }
    }
    [1]=>
    array(1) {
      ["register_admin_color_schemes"]=>
      array(2) {
        ["function"]=>
        string(28) "register_admin_color_schemes"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["importer_scheduled_cleanup"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_delete_attachment"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_delete_attachment"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["upgrader_scheduled_cleanup"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_delete_attachment"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_delete_attachment"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["welcome_panel"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_welcome_panel"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_welcome_panel"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["delete_post"]=>
  array(1) {
    [10]=>
    array(4) {
      ["_wp_delete_post_menu_item"]=>
      array(2) {
        ["function"]=>
        string(25) "_wp_delete_post_menu_item"
        ["accepted_args"]=>
        int(1)
      }
      ["delete_get_calendar_cache"]=>
      array(2) {
        ["function"]=>
        string(25) "delete_get_calendar_cache"
        ["accepted_args"]=>
        int(1)
      }
      ["_update_posts_count_on_delete"]=>
      array(2) {
        ["function"]=>
        string(29) "_update_posts_count_on_delete"
        ["accepted_args"]=>
        int(1)
      }
      ["_update_blog_date_on_post_delete"]=>
      array(2) {
        ["function"]=>
        string(32) "_update_blog_date_on_post_delete"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["delete_term"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_delete_tax_menu_item"]=>
      array(2) {
        ["function"]=>
        string(24) "_wp_delete_tax_menu_item"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["begin_fetch_post_thumbnail_html"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_post_thumbnail_class_filter_add"]=>
      array(2) {
        ["function"]=>
        string(35) "_wp_post_thumbnail_class_filter_add"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["end_fetch_post_thumbnail_html"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_post_thumbnail_class_filter_remove"]=>
      array(2) {
        ["function"]=>
        string(38) "_wp_post_thumbnail_class_filter_remove"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["attachment_updated"]=>
  array(1) {
    [12]=>
    array(1) {
      ["wp_check_for_changed_slugs"]=>
      array(2) {
        ["function"]=>
        string(26) "wp_check_for_changed_slugs"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["pre_option_gmt_offset"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_timezone_override_offset"]=>
      array(2) {
        ["function"]=>
        string(27) "wp_timezone_override_offset"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_color_scheme_picker"]=>
  array(1) {
    [10]=>
    array(1) {
      ["admin_color_scheme_picker"]=>
      array(2) {
        ["function"]=>
        string(25) "admin_color_scheme_picker"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["default_option_link_manager_enabled"]=>
  array(1) {
    [10]=>
    array(1) {
      ["__return_true"]=>
      array(2) {
        ["function"]=>
        string(13) "__return_true"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["default_option_embed_autourls"]=>
  array(1) {
    [10]=>
    array(1) {
      ["__return_true"]=>
      array(2) {
        ["function"]=>
        string(13) "__return_true"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["heartbeat_settings"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wp_heartbeat_settings"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_heartbeat_settings"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_heartbeat_set_suspension"]=>
      array(2) {
        ["function"]=>
        string(27) "wp_heartbeat_set_suspension"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_enqueue_scripts"]=>
  array(2) {
    [10]=>
    array(3) {
      ["wp_auth_check_load"]=>
      array(2) {
        ["function"]=>
        string(18) "wp_auth_check_load"
        ["accepted_args"]=>
        int(1)
      }
      ["_wp_customize_loader_settings"]=>
      array(2) {
        ["function"]=>
        string(29) "_wp_customize_loader_settings"
        ["accepted_args"]=>
        int(1)
      }
      ["WP_Internal_Pointers::enqueue_scripts"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          string(20) "WP_Internal_Pointers"
          [1]=>
          string(15) "enqueue_scripts"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
    [1000]=>
    array(1) {
      ["wp_localize_jquery_ui_datepicker"]=>
      array(2) {
        ["function"]=>
        string(32) "wp_localize_jquery_ui_datepicker"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["heartbeat_send"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_auth_check"]=>
      array(2) {
        ["function"]=>
        string(13) "wp_auth_check"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["heartbeat_nopriv_send"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_auth_check"]=>
      array(2) {
        ["function"]=>
        string(13) "wp_auth_check"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["authenticate"]=>
  array(2) {
    [20]=>
    array(2) {
      ["wp_authenticate_username_password"]=>
      array(2) {
        ["function"]=>
        string(33) "wp_authenticate_username_password"
        ["accepted_args"]=>
        int(3)
      }
      ["wp_authenticate_email_password"]=>
      array(2) {
        ["function"]=>
        string(30) "wp_authenticate_email_password"
        ["accepted_args"]=>
        int(3)
      }
    }
    [99]=>
    array(1) {
      ["wp_authenticate_spam_check"]=>
      array(2) {
        ["function"]=>
        string(26) "wp_authenticate_spam_check"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["determine_current_user"]=>
  array(2) {
    [10]=>
    array(1) {
      ["wp_validate_auth_cookie"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_validate_auth_cookie"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["wp_validate_logged_in_cookie"]=>
      array(2) {
        ["function"]=>
        string(28) "wp_validate_logged_in_cookie"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["split_shared_term"]=>
  array(1) {
    [10]=>
    array(3) {
      ["_wp_check_split_default_terms"]=>
      array(2) {
        ["function"]=>
        string(29) "_wp_check_split_default_terms"
        ["accepted_args"]=>
        int(4)
      }
      ["_wp_check_split_terms_in_menus"]=>
      array(2) {
        ["function"]=>
        string(30) "_wp_check_split_terms_in_menus"
        ["accepted_args"]=>
        int(4)
      }
      ["_wp_check_split_nav_menu_terms"]=>
      array(2) {
        ["function"]=>
        string(30) "_wp_check_split_nav_menu_terms"
        ["accepted_args"]=>
        int(4)
      }
    }
  }
  ["wp_split_shared_term_batch"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_batch_split_terms"]=>
      array(2) {
        ["function"]=>
        string(21) "_wp_batch_split_terms"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["comment_post"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wp_new_comment_notify_moderator"]=>
      array(2) {
        ["function"]=>
        string(31) "wp_new_comment_notify_moderator"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_new_comment_notify_postauthor"]=>
      array(2) {
        ["function"]=>
        string(32) "wp_new_comment_notify_postauthor"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["after_password_reset"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_password_change_notification"]=>
      array(2) {
        ["function"]=>
        string(31) "wp_password_change_notification"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["register_new_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_send_new_user_notifications"]=>
      array(2) {
        ["function"]=>
        string(30) "wp_send_new_user_notifications"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["edit_user_created_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_send_new_user_notifications"]=>
      array(2) {
        ["function"]=>
        string(30) "wp_send_new_user_notifications"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["rest_api_init"]=>
  array(1) {
    [10]=>
    array(2) {
      ["rest_api_default_filters"]=>
      array(2) {
        ["function"]=>
        string(24) "rest_api_default_filters"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_oembed_register_route"]=>
      array(2) {
        ["function"]=>
        string(24) "wp_oembed_register_route"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["parse_request"]=>
  array(1) {
    [10]=>
    array(1) {
      ["rest_api_loaded"]=>
      array(2) {
        ["function"]=>
        string(15) "rest_api_loaded"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_loaded"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_custom_header_background_just_in_time"]=>
      array(2) {
        ["function"]=>
        string(38) "_custom_header_background_just_in_time"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["delete_attachment"]=>
  array(1) {
    [10]=>
    array(2) {
      ["_delete_attachment_theme_mod"]=>
      array(2) {
        ["function"]=>
        string(28) "_delete_attachment_theme_mod"
        ["accepted_args"]=>
        int(1)
      }
      ["0000000058bb06ba0000000048306e80delete_attachment_data"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Site_Icon)#52 (3) {
            ["min_size"]=>
            int(512)
            ["page_crop"]=>
            int(512)
            ["site_icon_sizes"]=>
            array(4) {
              [0]=>
              int(270)
              [1]=>
              int(192)
              [2]=>
              int(180)
              [3]=>
              int(32)
            }
          }
          [1]=>
          string(22) "delete_attachment_data"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["save_post"]=>
  array(1) {
    [10]=>
    array(2) {
      ["delete_get_calendar_cache"]=>
      array(2) {
        ["function"]=>
        string(25) "delete_get_calendar_cache"
        ["accepted_args"]=>
        int(1)
      }
      ["twentyfifteen_category_transient_flusher"]=>
      array(2) {
        ["function"]=>
        string(40) "twentyfifteen_category_transient_flusher"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["update_option_start_of_week"]=>
  array(1) {
    [10]=>
    array(1) {
      ["delete_get_calendar_cache"]=>
      array(2) {
        ["function"]=>
        string(25) "delete_get_calendar_cache"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["update_option_gmt_offset"]=>
  array(1) {
    [10]=>
    array(1) {
      ["delete_get_calendar_cache"]=>
      array(2) {
        ["function"]=>
        string(25) "delete_get_calendar_cache"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_menu"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_add_post_type_submenus"]=>
      array(2) {
        ["function"]=>
        string(23) "_add_post_type_submenus"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["before_delete_post"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_reset_front_page_settings_for_post"]=>
      array(2) {
        ["function"]=>
        string(35) "_reset_front_page_settings_for_post"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_trash_post"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_reset_front_page_settings_for_post"]=>
      array(2) {
        ["function"]=>
        string(35) "_reset_front_page_settings_for_post"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["request"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_post_format_request"]=>
      array(2) {
        ["function"]=>
        string(20) "_post_format_request"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["term_link"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_post_format_link"]=>
      array(2) {
        ["function"]=>
        string(17) "_post_format_link"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["get_post_format"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_post_format_get_term"]=>
      array(2) {
        ["function"]=>
        string(21) "_post_format_get_term"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["get_terms"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_post_format_get_terms"]=>
      array(2) {
        ["function"]=>
        string(22) "_post_format_get_terms"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["wp_get_object_terms"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_post_format_wp_get_object_terms"]=>
      array(2) {
        ["function"]=>
        string(32) "_post_format_wp_get_object_terms"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["set_current_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["kses_init"]=>
      array(2) {
        ["function"]=>
        string(9) "kses_init"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_default_scripts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_default_scripts"]=>
      array(2) {
        ["function"]=>
        string(18) "wp_default_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_enqueue_scripts"]=>
  array(3) {
    [1000]=>
    array(1) {
      ["wp_localize_jquery_ui_datepicker"]=>
      array(2) {
        ["function"]=>
        string(32) "wp_localize_jquery_ui_datepicker"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(3) {
      ["twentyfifteen_scripts"]=>
      array(2) {
        ["function"]=>
        string(21) "twentyfifteen_scripts"
        ["accepted_args"]=>
        int(1)
      }
      ["twentyfifteen_post_nav_background"]=>
      array(2) {
        ["function"]=>
        string(33) "twentyfifteen_post_nav_background"
        ["accepted_args"]=>
        int(1)
      }
      ["twentyfifteen_color_scheme_css"]=>
      array(2) {
        ["function"]=>
        string(30) "twentyfifteen_color_scheme_css"
        ["accepted_args"]=>
        int(1)
      }
    }
    [11]=>
    array(2) {
      ["twentyfifteen_header_background_color_css"]=>
      array(2) {
        ["function"]=>
        string(41) "twentyfifteen_header_background_color_css"
        ["accepted_args"]=>
        int(1)
      }
      ["twentyfifteen_sidebar_text_color_css"]=>
      array(2) {
        ["function"]=>
        string(36) "twentyfifteen_sidebar_text_color_css"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_print_scripts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_just_in_time_script_localization"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_just_in_time_script_localization"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["print_scripts_array"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_prototype_before_jquery"]=>
      array(2) {
        ["function"]=>
        string(26) "wp_prototype_before_jquery"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["customize_controls_print_styles"]=>
  array(1) {
    [1]=>
    array(1) {
      ["wp_resource_hints"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_resource_hints"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_default_styles"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_default_styles"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_default_styles"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["style_loader_src"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_style_loader_src"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_style_loader_src"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["wp_playlist_scripts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_playlist_scripts"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_playlist_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["customize_controls_enqueue_scripts"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wp_plupload_default_settings"]=>
      array(2) {
        ["function"]=>
        string(28) "wp_plupload_default_settings"
        ["accepted_args"]=>
        int(1)
      }
      ["twentyfifteen_customize_control_js"]=>
      array(2) {
        ["function"]=>
        string(34) "twentyfifteen_customize_control_js"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["nav_menu_item_id"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_nav_menu_item_id_use_once"]=>
      array(2) {
        ["function"]=>
        string(26) "_nav_menu_item_id_use_once"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["before_signup_header"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_admin_bar_init"]=>
      array(2) {
        ["function"]=>
        string(18) "_wp_admin_bar_init"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["activate_header"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_admin_bar_init"]=>
      array(2) {
        ["function"]=>
        string(18) "_wp_admin_bar_init"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["in_admin_header"]=>
  array(1) {
    [0]=>
    array(1) {
      ["wp_admin_bar_render"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_admin_bar_render"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["media_buttons"]=>
  array(1) {
    [10]=>
    array(1) {
      ["media_buttons"]=>
      array(2) {
        ["function"]=>
        string(13) "media_buttons"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["image_send_to_editor"]=>
  array(1) {
    [20]=>
    array(1) {
      ["image_add_caption"]=>
      array(2) {
        ["function"]=>
        string(17) "image_add_caption"
        ["accepted_args"]=>
        int(8)
      }
    }
  }
  ["media_send_to_editor"]=>
  array(1) {
    [10]=>
    array(1) {
      ["image_media_send_to_editor"]=>
      array(2) {
        ["function"]=>
        string(26) "image_media_send_to_editor"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["rest_pre_serve_request"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_oembed_rest_pre_serve_request"]=>
      array(2) {
        ["function"]=>
        string(30) "_oembed_rest_pre_serve_request"
        ["accepted_args"]=>
        int(4)
      }
    }
  }
  ["embed_head"]=>
  array(4) {
    [1]=>
    array(1) {
      ["enqueue_embed_scripts"]=>
      array(2) {
        ["function"]=>
        string(21) "enqueue_embed_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(4) {
      ["print_emoji_detection_script"]=>
      array(2) {
        ["function"]=>
        string(28) "print_emoji_detection_script"
        ["accepted_args"]=>
        int(1)
      }
      ["print_embed_styles"]=>
      array(2) {
        ["function"]=>
        string(18) "print_embed_styles"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_no_robots"]=>
      array(2) {
        ["function"]=>
        string(12) "wp_no_robots"
        ["accepted_args"]=>
        int(1)
      }
      ["rel_canonical"]=>
      array(2) {
        ["function"]=>
        string(13) "rel_canonical"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(2) {
      ["wp_print_head_scripts"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_print_head_scripts"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_print_styles"]=>
      array(2) {
        ["function"]=>
        string(15) "wp_print_styles"
        ["accepted_args"]=>
        int(1)
      }
    }
    [30]=>
    array(1) {
      ["locale_stylesheet"]=>
      array(2) {
        ["function"]=>
        string(17) "locale_stylesheet"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["embed_content_meta"]=>
  array(1) {
    [10]=>
    array(2) {
      ["print_embed_comments_button"]=>
      array(2) {
        ["function"]=>
        string(27) "print_embed_comments_button"
        ["accepted_args"]=>
        int(1)
      }
      ["print_embed_sharing_button"]=>
      array(2) {
        ["function"]=>
        string(26) "print_embed_sharing_button"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["embed_footer"]=>
  array(2) {
    [10]=>
    array(2) {
      ["print_embed_sharing_dialog"]=>
      array(2) {
        ["function"]=>
        string(26) "print_embed_sharing_dialog"
        ["accepted_args"]=>
        int(1)
      }
      ["print_embed_scripts"]=>
      array(2) {
        ["function"]=>
        string(19) "print_embed_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["wp_print_footer_scripts"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_print_footer_scripts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["excerpt_more"]=>
  array(2) {
    [20]=>
    array(1) {
      ["wp_embed_excerpt_more"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_embed_excerpt_more"
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(1) {
      ["twentyfifteen_excerpt_more"]=>
      array(2) {
        ["function"]=>
        string(26) "twentyfifteen_excerpt_more"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["the_excerpt_embed"]=>
  array(1) {
    [10]=>
    array(5) {
      ["wptexturize"]=>
      array(2) {
        ["function"]=>
        string(11) "wptexturize"
        ["accepted_args"]=>
        int(1)
      }
      ["convert_chars"]=>
      array(2) {
        ["function"]=>
        string(13) "convert_chars"
        ["accepted_args"]=>
        int(1)
      }
      ["wpautop"]=>
      array(2) {
        ["function"]=>
        string(7) "wpautop"
        ["accepted_args"]=>
        int(1)
      }
      ["shortcode_unautop"]=>
      array(2) {
        ["function"]=>
        string(17) "shortcode_unautop"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_embed_excerpt_attachment"]=>
      array(2) {
        ["function"]=>
        string(27) "wp_embed_excerpt_attachment"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["oembed_dataparse"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_filter_oembed_result"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_filter_oembed_result"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["oembed_response_data"]=>
  array(1) {
    [10]=>
    array(1) {
      ["get_oembed_response_data_rich"]=>
      array(2) {
        ["function"]=>
        string(29) "get_oembed_response_data_rich"
        ["accepted_args"]=>
        int(4)
      }
    }
  }
  ["pre_oembed_result"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_filter_pre_oembed_result"]=>
      array(2) {
        ["function"]=>
        string(27) "wp_filter_pre_oembed_result"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["default_site_option_ms_files_rewriting"]=>
  array(1) {
    [10]=>
    array(1) {
      ["__return_true"]=>
      array(2) {
        ["function"]=>
        string(13) "__return_true"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_version_check"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_version_check"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_version_check"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["load-plugins.php"]=>
  array(2) {
    [10]=>
    array(1) {
      ["wp_update_plugins"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_update_plugins"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["wp_plugin_update_rows"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_plugin_update_rows"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["load-update.php"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wp_update_plugins"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_update_plugins"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_update_themes"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_update_themes"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["load-update-core.php"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wp_update_plugins"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_update_plugins"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_update_themes"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_update_themes"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_update_plugins"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_update_plugins"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_update_plugins"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["load-themes.php"]=>
  array(2) {
    [10]=>
    array(1) {
      ["wp_update_themes"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_update_themes"
        ["accepted_args"]=>
        int(1)
      }
    }
    [20]=>
    array(1) {
      ["wp_theme_update_rows"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_theme_update_rows"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_update_themes"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_update_themes"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_update_themes"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["update_option_WPLANG"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_clean_update_cache"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_clean_update_cache"
        ["accepted_args"]=>
        int(0)
      }
    }
  }
  ["wp_maybe_auto_update"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_auto_update"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_maybe_auto_update"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["edit_form_advanced"]=>
  array(1) {
    [10]=>
    array(1) {
      ["0000000058bb06fb0000000048306e80maybe_run_ajax_cache"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Embed)#117 (7) {
            ["handlers"]=>
            array(2) {
              [10]=>
              array(1) {
                ["youtube_embed_url"]=>
                array(2) {
                  ["regex"]=>
                  string(51) "#https?://(www.)?youtube\.com/(?:v|embed)/([^/]+)#i"
                  ["callback"]=>
                  string(24) "wp_embed_handler_youtube"
                }
              }
              [9999]=>
              array(2) {
                ["audio"]=>
                array(2) {
                  ["regex"]=>
                  string(40) "#^https?://.+?\.(mp3|ogg|wma|m4a|wav)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_audio"
                }
                ["video"]=>
                array(2) {
                  ["regex"]=>
                  string(45) "#^https?://.+?\.(mp4|m4v|webm|ogv|wmv|flv)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_video"
                }
              }
            }
            ["post_ID"]=>
            NULL
            ["usecache"]=>
            bool(true)
            ["linkifunknown"]=>
            bool(true)
            ["last_attr"]=>
            array(0) {
            }
            ["last_url"]=>
            string(0) ""
            ["return_false_on_fail"]=>
            bool(false)
          }
          [1]=>
          string(20) "maybe_run_ajax_cache"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["edit_page_form"]=>
  array(1) {
    [10]=>
    array(1) {
      ["0000000058bb06fb0000000048306e80maybe_run_ajax_cache"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Embed)#117 (7) {
            ["handlers"]=>
            array(2) {
              [10]=>
              array(1) {
                ["youtube_embed_url"]=>
                array(2) {
                  ["regex"]=>
                  string(51) "#https?://(www.)?youtube\.com/(?:v|embed)/([^/]+)#i"
                  ["callback"]=>
                  string(24) "wp_embed_handler_youtube"
                }
              }
              [9999]=>
              array(2) {
                ["audio"]=>
                array(2) {
                  ["regex"]=>
                  string(40) "#^https?://.+?\.(mp3|ogg|wma|m4a|wav)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_audio"
                }
                ["video"]=>
                array(2) {
                  ["regex"]=>
                  string(45) "#^https?://.+?\.(mp4|m4v|webm|ogv|wmv|flv)$#i"
                  ["callback"]=>
                  string(22) "wp_embed_handler_video"
                }
              }
            }
            ["post_ID"]=>
            NULL
            ["usecache"]=>
            bool(true)
            ["linkifunknown"]=>
            bool(true)
            ["last_attr"]=>
            array(0) {
            }
            ["last_url"]=>
            string(0) ""
            ["return_false_on_fail"]=>
            bool(false)
          }
          [1]=>
          string(20) "maybe_run_ajax_cache"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["update_option_blog_public"]=>
  array(1) {
    [10]=>
    array(1) {
      ["update_blog_public"]=>
      array(2) {
        ["function"]=>
        string(18) "update_blog_public"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["option_users_can_register"]=>
  array(1) {
    [10]=>
    array(1) {
      ["users_can_register_signup_filter"]=>
      array(2) {
        ["function"]=>
        string(32) "users_can_register_signup_filter"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["site_option_welcome_user_email"]=>
  array(1) {
    [10]=>
    array(1) {
      ["welcome_user_msg_filter"]=>
      array(2) {
        ["function"]=>
        string(23) "welcome_user_msg_filter"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wpmu_validate_user_signup"]=>
  array(1) {
    [10]=>
    array(1) {
      ["signup_nonce_check"]=>
      array(2) {
        ["function"]=>
        string(18) "signup_nonce_check"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wpmu_new_user"]=>
  array(1) {
    [10]=>
    array(2) {
      ["newuser_notify_siteadmin"]=>
      array(2) {
        ["function"]=>
        string(24) "newuser_notify_siteadmin"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_maybe_update_network_user_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_user_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wpmu_activate_user"]=>
  array(1) {
    [10]=>
    array(2) {
      ["add_new_user_to_blog"]=>
      array(2) {
        ["function"]=>
        string(20) "add_new_user_to_blog"
        ["accepted_args"]=>
        int(3)
      }
      ["wpmu_welcome_user_notification"]=>
      array(2) {
        ["function"]=>
        string(30) "wpmu_welcome_user_notification"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["after_signup_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wpmu_signup_user_notification"]=>
      array(2) {
        ["function"]=>
        string(29) "wpmu_signup_user_notification"
        ["accepted_args"]=>
        int(4)
      }
    }
  }
  ["network_site_new_created_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_send_new_user_notifications"]=>
      array(2) {
        ["function"]=>
        string(30) "wp_send_new_user_notifications"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["network_site_users_created_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_send_new_user_notifications"]=>
      array(2) {
        ["function"]=>
        string(30) "wp_send_new_user_notifications"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["network_user_new_created_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_send_new_user_notifications"]=>
      array(2) {
        ["function"]=>
        string(30) "wp_send_new_user_notifications"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["sanitize_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["strtolower"]=>
      array(2) {
        ["function"]=>
        string(10) "strtolower"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wpmu_validate_blog_signup"]=>
  array(1) {
    [10]=>
    array(1) {
      ["signup_nonce_check"]=>
      array(2) {
        ["function"]=>
        string(18) "signup_nonce_check"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wpmu_new_blog"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wpmu_log_new_registrations"]=>
      array(2) {
        ["function"]=>
        string(26) "wpmu_log_new_registrations"
        ["accepted_args"]=>
        int(2)
      }
      ["newblog_notify_siteadmin"]=>
      array(2) {
        ["function"]=>
        string(24) "newblog_notify_siteadmin"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["wpmu_activate_blog"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wpmu_welcome_notification"]=>
      array(2) {
        ["function"]=>
        string(25) "wpmu_welcome_notification"
        ["accepted_args"]=>
        int(5)
      }
    }
  }
  ["after_signup_site"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wpmu_signup_blog_notification"]=>
      array(2) {
        ["function"]=>
        string(29) "wpmu_signup_blog_notification"
        ["accepted_args"]=>
        int(7)
      }
    }
  }
  ["signup_hidden_fields"]=>
  array(1) {
    [10]=>
    array(1) {
      ["signup_nonce_fields"]=>
      array(2) {
        ["function"]=>
        string(19) "signup_nonce_fields"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["allowed_redirect_hosts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["redirect_this_site"]=>
      array(2) {
        ["function"]=>
        string(18) "redirect_this_site"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["term_id_filter"]=>
  array(1) {
    [10]=>
    array(1) {
      ["global_terms"]=>
      array(2) {
        ["function"]=>
        string(12) "global_terms"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["update_network_counts"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_update_network_counts"]=>
      array(2) {
        ["function"]=>
        string(24) "wp_update_network_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_register"]=>
  array(1) {
    [10]=>
    array(2) {
      ["wp_maybe_update_network_user_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_user_counts"
        ["accepted_args"]=>
        int(1)
      }
      ["WP_Internal_Pointers::dismiss_pointers_for_new_users"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          string(20) "WP_Internal_Pointers"
          [1]=>
          string(30) "dismiss_pointers_for_new_users"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["deleted_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_user_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_user_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["make_spam_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_user_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_user_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["make_ham_user"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_user_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_user_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["make_spam_blog"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_site_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_site_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["make_ham_blog"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_site_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_site_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["archive_blog"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_site_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_site_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["unarchive_blog"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_site_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_site_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["make_delete_blog"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_site_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_site_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["make_undelete_blog"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_maybe_update_network_site_counts"]=>
      array(2) {
        ["function"]=>
        string(35) "wp_maybe_update_network_site_counts"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_upload_bits"]=>
  array(1) {
    [10]=>
    array(1) {
      ["upload_is_file_too_big"]=>
      array(2) {
        ["function"]=>
        string(22) "upload_is_file_too_big"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["import_upload_size_limit"]=>
  array(1) {
    [10]=>
    array(1) {
      ["fix_import_form_size"]=>
      array(2) {
        ["function"]=>
        string(20) "fix_import_form_size"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["upload_mimes"]=>
  array(1) {
    [10]=>
    array(1) {
      ["check_upload_mimes"]=>
      array(2) {
        ["function"]=>
        string(18) "check_upload_mimes"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["upload_size_limit"]=>
  array(1) {
    [10]=>
    array(1) {
      ["upload_size_limit_filter"]=>
      array(2) {
        ["function"]=>
        string(24) "upload_size_limit_filter"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["upload_ui_over_quota"]=>
  array(1) {
    [10]=>
    array(1) {
      ["multisite_over_quota_message"]=>
      array(2) {
        ["function"]=>
        string(28) "multisite_over_quota_message"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["phpmailer_init"]=>
  array(1) {
    [10]=>
    array(1) {
      ["fix_phpmailer_messageid"]=>
      array(2) {
        ["function"]=>
        string(23) "fix_phpmailer_messageid"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["enable_update_services_configuration"]=>
  array(1) {
    [10]=>
    array(1) {
      ["__return_false"]=>
      array(2) {
        ["function"]=>
        string(14) "__return_false"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["enable_post_by_email_configuration"]=>
  array(1) {
    [10]=>
    array(1) {
      ["__return_false"]=>
      array(2) {
        ["function"]=>
        string(14) "__return_false"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["enable_edit_any_user_configuration"]=>
  array(1) {
    [10]=>
    array(1) {
      ["__return_false"]=>
      array(2) {
        ["function"]=>
        string(14) "__return_false"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["force_filtered_html_on_import"]=>
  array(1) {
    [10]=>
    array(1) {
      ["__return_true"]=>
      array(2) {
        ["function"]=>
        string(13) "__return_true"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["update_option_blogname"]=>
  array(1) {
    [10]=>
    array(1) {
      ["refresh_blog_details"]=>
      array(2) {
        ["function"]=>
        string(20) "refresh_blog_details"
        ["accepted_args"]=>
        int(0)
      }
    }
  }
  ["update_option_siteurl"]=>
  array(1) {
    [10]=>
    array(2) {
      ["refresh_blog_details"]=>
      array(2) {
        ["function"]=>
        string(20) "refresh_blog_details"
        ["accepted_args"]=>
        int(0)
      }
      ["update_home_siteurl"]=>
      array(2) {
        ["function"]=>
        string(19) "update_home_siteurl"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["update_option_post_count"]=>
  array(1) {
    [10]=>
    array(1) {
      ["refresh_blog_details"]=>
      array(2) {
        ["function"]=>
        string(20) "refresh_blog_details"
        ["accepted_args"]=>
        int(0)
      }
    }
  }
  ["wp_ajax_add-category"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_ajax_add_hierarchical_term"]=>
      array(2) {
        ["function"]=>
        string(30) "_wp_ajax_add_hierarchical_term"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_ajax_add-post_tag"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_ajax_add_hierarchical_term"]=>
      array(2) {
        ["function"]=>
        string(30) "_wp_ajax_add_hierarchical_term"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_ajax_add-nav_menu"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_ajax_add_hierarchical_term"]=>
      array(2) {
        ["function"]=>
        string(30) "_wp_ajax_add_hierarchical_term"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_ajax_add-link_category"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_ajax_add_hierarchical_term"]=>
      array(2) {
        ["function"]=>
        string(30) "_wp_ajax_add_hierarchical_term"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["wp_ajax_add-post_format"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_ajax_add_hierarchical_term"]=>
      array(2) {
        ["function"]=>
        string(30) "_wp_ajax_add_hierarchical_term"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["future_post"]=>
  array(1) {
    [5]=>
    array(1) {
      ["_future_post_hook"]=>
      array(2) {
        ["function"]=>
        string(17) "_future_post_hook"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["future_page"]=>
  array(1) {
    [5]=>
    array(1) {
      ["_future_post_hook"]=>
      array(2) {
        ["function"]=>
        string(17) "_future_post_hook"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["future_attachment"]=>
  array(1) {
    [5]=>
    array(1) {
      ["_future_post_hook"]=>
      array(2) {
        ["function"]=>
        string(17) "_future_post_hook"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["future_revision"]=>
  array(1) {
    [5]=>
    array(1) {
      ["_future_post_hook"]=>
      array(2) {
        ["function"]=>
        string(17) "_future_post_hook"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["future_nav_menu_item"]=>
  array(1) {
    [5]=>
    array(1) {
      ["_future_post_hook"]=>
      array(2) {
        ["function"]=>
        string(17) "_future_post_hook"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["_admin_menu"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_widgets_add_menu"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_widgets_add_menu"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["widgets_init"]=>
  array(2) {
    [10]=>
    array(1) {
      ["twentyfifteen_widgets_init"]=>
      array(2) {
        ["function"]=>
        string(26) "twentyfifteen_widgets_init"
        ["accepted_args"]=>
        int(1)
      }
    }
    [100]=>
    array(1) {
      ["0000000058bb06c70000000048306e80_register_widgets"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Widget_Factory)#73 (2) {
            ["widgets"]=>
            array(12) {
              ["WP_Widget_Pages"]=>
              object(WP_Widget_Pages)#98 (8) {
                ["id_base"]=>
                string(5) "pages"
                ["name"]=>
                string(5) "Pages"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(12) "widget_pages"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(34) "A list of your site&#8217;s Pages."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(5) "pages"
                }
                ["number"]=>
                int(1)
                ["id"]=>
                string(7) "pages-1"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(12) "widget_pages"
              }
              ["WP_Widget_Calendar"]=>
              object(WP_Widget_Calendar)#108 (8) {
                ["id_base"]=>
                string(8) "calendar"
                ["name"]=>
                string(8) "Calendar"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(15) "widget_calendar"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(38) "A calendar of your site&#8217;s Posts."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(8) "calendar"
                }
                ["number"]=>
                int(1)
                ["id"]=>
                string(10) "calendar-1"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(15) "widget_calendar"
              }
              ["WP_Widget_Archives"]=>
              object(WP_Widget_Archives)#97 (8) {
                ["id_base"]=>
                string(8) "archives"
                ["name"]=>
                string(8) "Archives"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(14) "widget_archive"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(45) "A monthly archive of your site&#8217;s Posts."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(8) "archives"
                }
                ["number"]=>
                int(2)
                ["id"]=>
                string(10) "archives-2"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(15) "widget_archives"
              }
              ["WP_Widget_Meta"]=>
              object(WP_Widget_Meta)#111 (8) {
                ["id_base"]=>
                string(4) "meta"
                ["name"]=>
                string(4) "Meta"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(11) "widget_meta"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(38) "Login, RSS, &amp; WordPress.org links."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(4) "meta"
                }
                ["number"]=>
                int(2)
                ["id"]=>
                string(6) "meta-2"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(11) "widget_meta"
              }
              ["WP_Widget_Search"]=>
              object(WP_Widget_Search)#100 (8) {
                ["id_base"]=>
                string(6) "search"
                ["name"]=>
                string(6) "Search"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(13) "widget_search"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(28) "A search form for your site."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(6) "search"
                }
                ["number"]=>
                int(2)
                ["id"]=>
                string(8) "search-2"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(13) "widget_search"
              }
              ["WP_Widget_Text"]=>
              object(WP_Widget_Text)#112 (8) {
                ["id_base"]=>
                string(4) "text"
                ["name"]=>
                string(4) "Text"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(11) "widget_text"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(23) "Arbitrary text or HTML."
                }
                ["control_options"]=>
                array(3) {
                  ["id_base"]=>
                  string(4) "text"
                  ["width"]=>
                  int(400)
                  ["height"]=>
                  int(350)
                }
                ["number"]=>
                int(1)
                ["id"]=>
                string(6) "text-1"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(11) "widget_text"
              }
              ["WP_Widget_Categories"]=>
              object(WP_Widget_Categories)#58 (8) {
                ["id_base"]=>
                string(10) "categories"
                ["name"]=>
                string(10) "Categories"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(17) "widget_categories"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(33) "A list or dropdown of categories."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(10) "categories"
                }
                ["number"]=>
                int(2)
                ["id"]=>
                string(12) "categories-2"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(17) "widget_categories"
              }
              ["WP_Widget_Recent_Posts"]=>
              object(WP_Widget_Recent_Posts)#57 (9) {
                ["id_base"]=>
                string(12) "recent-posts"
                ["name"]=>
                string(12) "Recent Posts"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(21) "widget_recent_entries"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(36) "Your site&#8217;s most recent Posts."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(12) "recent-posts"
                }
                ["number"]=>
                int(2)
                ["id"]=>
                string(14) "recent-posts-2"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(19) "widget_recent-posts"
                ["alt_option_name"]=>
                string(21) "widget_recent_entries"
              }
              ["WP_Widget_Recent_Comments"]=>
              object(WP_Widget_Recent_Comments)#56 (9) {
                ["id_base"]=>
                string(15) "recent-comments"
                ["name"]=>
                string(15) "Recent Comments"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(22) "widget_recent_comments"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(39) "Your site&#8217;s most recent comments."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(15) "recent-comments"
                }
                ["number"]=>
                int(2)
                ["id"]=>
                string(17) "recent-comments-2"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(22) "widget_recent-comments"
                ["alt_option_name"]=>
                string(22) "widget_recent_comments"
              }
              ["WP_Widget_RSS"]=>
              object(WP_Widget_RSS)#55 (8) {
                ["id_base"]=>
                string(3) "rss"
                ["name"]=>
                string(3) "RSS"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(10) "widget_rss"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(34) "Entries from any RSS or Atom feed."
                }
                ["control_options"]=>
                array(3) {
                  ["id_base"]=>
                  string(3) "rss"
                  ["width"]=>
                  int(400)
                  ["height"]=>
                  int(200)
                }
                ["number"]=>
                int(1)
                ["id"]=>
                string(5) "rss-1"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(10) "widget_rss"
              }
              ["WP_Widget_Tag_Cloud"]=>
              object(WP_Widget_Tag_Cloud)#54 (8) {
                ["id_base"]=>
                string(9) "tag_cloud"
                ["name"]=>
                string(9) "Tag Cloud"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(16) "widget_tag_cloud"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(31) "A cloud of your most used tags."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(9) "tag_cloud"
                }
                ["number"]=>
                int(1)
                ["id"]=>
                string(11) "tag_cloud-1"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(16) "widget_tag_cloud"
              }
              ["WP_Nav_Menu_Widget"]=>
              object(WP_Nav_Menu_Widget)#53 (8) {
                ["id_base"]=>
                string(8) "nav_menu"
                ["name"]=>
                string(11) "Custom Menu"
                ["widget_options"]=>
                array(3) {
                  ["classname"]=>
                  string(15) "widget_nav_menu"
                  ["customize_selective_refresh"]=>
                  bool(true)
                  ["description"]=>
                  string(34) "Add a custom menu to your sidebar."
                }
                ["control_options"]=>
                array(1) {
                  ["id_base"]=>
                  string(8) "nav_menu"
                }
                ["number"]=>
                int(1)
                ["id"]=>
                string(10) "nav_menu-1"
                ["updated"]=>
                bool(false)
                ["option_name"]=>
                string(15) "widget_nav_menu"
              }
            }
            ["hashed_class_counts":"WP_Widget_Factory":private]=>
            array(0) {
            }
          }
          [1]=>
          string(17) "_register_widgets"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["after_setup_theme"]=>
  array(1) {
    [10]=>
    array(2) {
      ["twentyfifteen_setup"]=>
      array(2) {
        ["function"]=>
        string(19) "twentyfifteen_setup"
        ["accepted_args"]=>
        int(1)
      }
      ["twentyfifteen_custom_header_setup"]=>
      array(2) {
        ["function"]=>
        string(33) "twentyfifteen_custom_header_setup"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["walker_nav_menu_start_el"]=>
  array(1) {
    [10]=>
    array(1) {
      ["twentyfifteen_nav_description"]=>
      array(2) {
        ["function"]=>
        string(29) "twentyfifteen_nav_description"
        ["accepted_args"]=>
        int(4)
      }
    }
  }
  ["get_search_form"]=>
  array(1) {
    [10]=>
    array(1) {
      ["twentyfifteen_search_form_modify"]=>
      array(2) {
        ["function"]=>
        string(32) "twentyfifteen_search_form_modify"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["edit_category"]=>
  array(1) {
    [10]=>
    array(1) {
      ["twentyfifteen_category_transient_flusher"]=>
      array(2) {
        ["function"]=>
        string(40) "twentyfifteen_category_transient_flusher"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["customize_register"]=>
  array(1) {
    [11]=>
    array(1) {
      ["twentyfifteen_customize_register"]=>
      array(2) {
        ["function"]=>
        string(32) "twentyfifteen_customize_register"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["customize_preview_init"]=>
  array(1) {
    [10]=>
    array(1) {
      ["twentyfifteen_customize_preview_js"]=>
      array(2) {
        ["function"]=>
        string(34) "twentyfifteen_customize_preview_js"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["customize_controls_print_footer_scripts"]=>
  array(1) {
    [10]=>
    array(2) {
      ["twentyfifteen_color_scheme_css_template"]=>
      array(2) {
        ["function"]=>
        string(39) "twentyfifteen_color_scheme_css_template"
        ["accepted_args"]=>
        int(1)
      }
      ["customize_themes_print_templates"]=>
      array(2) {
        ["function"]=>
        string(32) "customize_themes_print_templates"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["content_filtered_save_pre"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_filter_post_kses"]=>
      array(2) {
        ["function"]=>
        string(19) "wp_filter_post_kses"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_page_access_denied"]=>
  array(2) {
    [10]=>
    array(1) {
      ["wp_link_manager_disabled_message"]=>
      array(2) {
        ["function"]=>
        string(32) "wp_link_manager_disabled_message"
        ["accepted_args"]=>
        int(1)
      }
    }
    [99]=>
    array(1) {
      ["_access_denied_splash"]=>
      array(2) {
        ["function"]=>
        string(21) "_access_denied_splash"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["activity_box_end"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_dashboard_quota"]=>
      array(2) {
        ["function"]=>
        string(18) "wp_dashboard_quota"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["attachment_submitbox_misc_actions"]=>
  array(1) {
    [10]=>
    array(1) {
      ["attachment_submitbox_metadata"]=>
      array(2) {
        ["function"]=>
        string(29) "attachment_submitbox_metadata"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["media_upload_image"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_media_upload_handler"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_media_upload_handler"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["media_upload_audio"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_media_upload_handler"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_media_upload_handler"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["media_upload_video"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_media_upload_handler"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_media_upload_handler"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["media_upload_file"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_media_upload_handler"]=>
      array(2) {
        ["function"]=>
        string(23) "wp_media_upload_handler"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["post-plupload-upload-ui"]=>
  array(1) {
    [10]=>
    array(1) {
      ["media_upload_flash_bypass"]=>
      array(2) {
        ["function"]=>
        string(25) "media_upload_flash_bypass"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["post-html-upload-ui"]=>
  array(1) {
    [10]=>
    array(1) {
      ["media_upload_html_bypass"]=>
      array(2) {
        ["function"]=>
        string(24) "media_upload_html_bypass"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["async_upload_image"]=>
  array(1) {
    [10]=>
    array(1) {
      ["get_media_item"]=>
      array(2) {
        ["function"]=>
        string(14) "get_media_item"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["async_upload_audio"]=>
  array(1) {
    [10]=>
    array(1) {
      ["get_media_item"]=>
      array(2) {
        ["function"]=>
        string(14) "get_media_item"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["async_upload_video"]=>
  array(1) {
    [10]=>
    array(1) {
      ["get_media_item"]=>
      array(2) {
        ["function"]=>
        string(14) "get_media_item"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["async_upload_file"]=>
  array(1) {
    [10]=>
    array(1) {
      ["get_media_item"]=>
      array(2) {
        ["function"]=>
        string(14) "get_media_item"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["attachment_fields_to_save"]=>
  array(1) {
    [10]=>
    array(1) {
      ["image_attachment_fields_to_save"]=>
      array(2) {
        ["function"]=>
        string(31) "image_attachment_fields_to_save"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["media_upload_gallery"]=>
  array(1) {
    [10]=>
    array(1) {
      ["media_upload_gallery"]=>
      array(2) {
        ["function"]=>
        string(20) "media_upload_gallery"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["media_upload_library"]=>
  array(1) {
    [10]=>
    array(1) {
      ["media_upload_library"]=>
      array(2) {
        ["function"]=>
        string(20) "media_upload_library"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["media_upload_tabs"]=>
  array(1) {
    [10]=>
    array(1) {
      ["update_gallery_tab"]=>
      array(2) {
        ["function"]=>
        string(18) "update_gallery_tab"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_head"]=>
  array(1) {
    [10]=>
    array(4) {
      ["wp_admin_canonical_url"]=>
      array(2) {
        ["function"]=>
        string(22) "wp_admin_canonical_url"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_color_scheme_settings"]=>
      array(2) {
        ["function"]=>
        string(24) "wp_color_scheme_settings"
        ["accepted_args"]=>
        int(1)
      }
      ["wp_site_icon"]=>
      array(2) {
        ["function"]=>
        string(12) "wp_site_icon"
        ["accepted_args"]=>
        int(1)
      }
      ["_ipad_meta"]=>
      array(2) {
        ["function"]=>
        string(10) "_ipad_meta"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_print_scripts-post.php"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_page_reload_on_back_button_js"]=>
      array(2) {
        ["function"]=>
        string(32) "wp_page_reload_on_back_button_js"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_print_scripts-post-new.php"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_page_reload_on_back_button_js"]=>
      array(2) {
        ["function"]=>
        string(32) "wp_page_reload_on_back_button_js"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["update_option_home"]=>
  array(1) {
    [10]=>
    array(1) {
      ["update_home_siteurl"]=>
      array(2) {
        ["function"]=>
        string(19) "update_home_siteurl"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["update_option_page_on_front"]=>
  array(1) {
    [10]=>
    array(1) {
      ["update_home_siteurl"]=>
      array(2) {
        ["function"]=>
        string(19) "update_home_siteurl"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["heartbeat_received"]=>
  array(2) {
    [10]=>
    array(2) {
      ["wp_check_locked_posts"]=>
      array(2) {
        ["function"]=>
        string(21) "wp_check_locked_posts"
        ["accepted_args"]=>
        int(3)
      }
      ["wp_refresh_post_lock"]=>
      array(2) {
        ["function"]=>
        string(20) "wp_refresh_post_lock"
        ["accepted_args"]=>
        int(3)
      }
    }
    [500]=>
    array(1) {
      ["heartbeat_autosave"]=>
      array(2) {
        ["function"]=>
        string(18) "heartbeat_autosave"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["wp_refresh_nonces"]=>
  array(1) {
    [10]=>
    array(1) {
      ["wp_refresh_post_nonces"]=>
      array(2) {
        ["function"]=>
        string(22) "wp_refresh_post_nonces"
        ["accepted_args"]=>
        int(3)
      }
    }
  }
  ["admin_head-nav-menus.php"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_wp_delete_orphaned_draft_menu_items"]=>
      array(2) {
        ["function"]=>
        string(36) "_wp_delete_orphaned_draft_menu_items"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["whitelist_options"]=>
  array(1) {
    [10]=>
    array(1) {
      ["option_update_filter"]=>
      array(2) {
        ["function"]=>
        string(20) "option_update_filter"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_featured"]=>
  array(1) {
    [10]=>
    array(1) {
      ["install_dashboard"]=>
      array(2) {
        ["function"]=>
        string(17) "install_dashboard"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_upload"]=>
  array(1) {
    [10]=>
    array(1) {
      ["install_plugins_upload"]=>
      array(2) {
        ["function"]=>
        string(22) "install_plugins_upload"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_search"]=>
  array(1) {
    [10]=>
    array(1) {
      ["display_plugins_table"]=>
      array(2) {
        ["function"]=>
        string(21) "display_plugins_table"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_popular"]=>
  array(1) {
    [10]=>
    array(1) {
      ["display_plugins_table"]=>
      array(2) {
        ["function"]=>
        string(21) "display_plugins_table"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_recommended"]=>
  array(1) {
    [10]=>
    array(1) {
      ["display_plugins_table"]=>
      array(2) {
        ["function"]=>
        string(21) "display_plugins_table"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_new"]=>
  array(1) {
    [10]=>
    array(1) {
      ["display_plugins_table"]=>
      array(2) {
        ["function"]=>
        string(21) "display_plugins_table"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_beta"]=>
  array(1) {
    [10]=>
    array(1) {
      ["display_plugins_table"]=>
      array(2) {
        ["function"]=>
        string(21) "display_plugins_table"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_favorites"]=>
  array(1) {
    [10]=>
    array(1) {
      ["display_plugins_table"]=>
      array(2) {
        ["function"]=>
        string(21) "display_plugins_table"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_plugins_pre_plugin-information"]=>
  array(1) {
    [10]=>
    array(1) {
      ["install_plugin_information"]=>
      array(2) {
        ["function"]=>
        string(26) "install_plugin_information"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["install_themes_pre_theme-information"]=>
  array(1) {
    [10]=>
    array(1) {
      ["install_theme_information"]=>
      array(2) {
        ["function"]=>
        string(25) "install_theme_information"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["admin_notices"]=>
  array(2) {
    [10]=>
    array(4) {
      ["default_password_nag"]=>
      array(2) {
        ["function"]=>
        string(20) "default_password_nag"
        ["accepted_args"]=>
        int(1)
      }
      ["maintenance_nag"]=>
      array(2) {
        ["function"]=>
        string(15) "maintenance_nag"
        ["accepted_args"]=>
        int(1)
      }
      ["new_user_email_admin_notice"]=>
      array(2) {
        ["function"]=>
        string(27) "new_user_email_admin_notice"
        ["accepted_args"]=>
        int(1)
      }
      ["site_admin_notice"]=>
      array(2) {
        ["function"]=>
        string(17) "site_admin_notice"
        ["accepted_args"]=>
        int(1)
      }
    }
    [3]=>
    array(1) {
      ["update_nag"]=>
      array(2) {
        ["function"]=>
        string(10) "update_nag"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["profile_update"]=>
  array(1) {
    [10]=>
    array(1) {
      ["default_password_nag_edit_user"]=>
      array(2) {
        ["function"]=>
        string(30) "default_password_nag_edit_user"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["update_footer"]=>
  array(1) {
    [10]=>
    array(1) {
      ["core_update_footer"]=>
      array(2) {
        ["function"]=>
        string(18) "core_update_footer"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["_core_updated_successfully"]=>
  array(1) {
    [10]=>
    array(1) {
      ["_redirect_to_about_wordpress"]=>
      array(2) {
        ["function"]=>
        string(28) "_redirect_to_about_wordpress"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["upgrader_process_complete"]=>
  array(2) {
    [20]=>
    array(1) {
      ["Language_Pack_Upgrader::async_upgrade"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          string(22) "Language_Pack_Upgrader"
          [1]=>
          string(13) "async_upgrade"
        }
        ["accepted_args"]=>
        int(1)
      }
    }
    [10]=>
    array(3) {
      ["wp_version_check"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_version_check"
        ["accepted_args"]=>
        int(0)
      }
      ["wp_update_plugins"]=>
      array(2) {
        ["function"]=>
        string(17) "wp_update_plugins"
        ["accepted_args"]=>
        int(0)
      }
      ["wp_update_themes"]=>
      array(2) {
        ["function"]=>
        string(16) "wp_update_themes"
        ["accepted_args"]=>
        int(0)
      }
    }
  }
  ["get_post_metadata"]=>
  array(1) {
    [10]=>
    array(1) {
      ["0000000058bb06ba0000000048306e80get_post_metadata"]=>
      array(2) {
        ["function"]=>
        array(2) {
          [0]=>
          object(WP_Site_Icon)#52 (3) {
            ["min_size"]=>
            int(512)
            ["page_crop"]=>
            int(512)
            ["site_icon_sizes"]=>
            array(4) {
              [0]=>
              int(270)
              [1]=>
              int(192)
              [2]=>
              int(180)
              [3]=>
              int(32)
            }
          }
          [1]=>
          string(17) "get_post_metadata"
        }
        ["accepted_args"]=>
        int(4)
      }
    }
  }
  ["wp_handle_upload_prefilter"]=>
  array(1) {
    [10]=>
    array(1) {
      ["check_upload_size"]=>
      array(2) {
        ["function"]=>
        string(17) "check_upload_size"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["user_admin_notices"]=>
  array(1) {
    [10]=>
    array(1) {
      ["new_user_email_admin_notice"]=>
      array(2) {
        ["function"]=>
        string(27) "new_user_email_admin_notice"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["add_option_new_admin_email"]=>
  array(1) {
    [10]=>
    array(1) {
      ["update_option_new_admin_email"]=>
      array(2) {
        ["function"]=>
        string(29) "update_option_new_admin_email"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["personal_options_update"]=>
  array(1) {
    [10]=>
    array(1) {
      ["send_confirmation_on_profile_email"]=>
      array(2) {
        ["function"]=>
        string(34) "send_confirmation_on_profile_email"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["update_option_new_admin_email"]=>
  array(1) {
    [10]=>
    array(1) {
      ["update_option_new_admin_email"]=>
      array(2) {
        ["function"]=>
        string(29) "update_option_new_admin_email"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["wpmueditblogaction"]=>
  array(1) {
    [10]=>
    array(1) {
      ["upload_space_setting"]=>
      array(2) {
        ["function"]=>
        string(20) "upload_space_setting"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["get_term"]=>
  array(1) {
    [10]=>
    array(1) {
      ["sync_category_tag_slugs"]=>
      array(2) {
        ["function"]=>
        string(23) "sync_category_tag_slugs"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["wp_insert_post_data"]=>
  array(1) {
    [10]=>
    array(1) {
      ["avoid_blog_page_permalink_collision"]=>
      array(2) {
        ["function"]=>
        string(35) "avoid_blog_page_permalink_collision"
        ["accepted_args"]=>
        int(2)
      }
    }
  }
  ["import_allow_create_users"]=>
  array(1) {
    [10]=>
    array(1) {
      ["check_import_new_users"]=>
      array(2) {
        ["function"]=>
        string(22) "check_import_new_users"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
  ["network_admin_notices"]=>
  array(2) {
    [10]=>
    array(2) {
      ["site_admin_notice"]=>
      array(2) {
        ["function"]=>
        string(17) "site_admin_notice"
        ["accepted_args"]=>
        int(1)
      }
      ["maintenance_nag"]=>
      array(2) {
        ["function"]=>
        string(15) "maintenance_nag"
        ["accepted_args"]=>
        int(1)
      }
    }
    [3]=>
    array(1) {
      ["update_nag"]=>
      array(2) {
        ["function"]=>
        string(10) "update_nag"
        ["accepted_args"]=>
        int(1)
      }
    }
  }
}


Time: 1.23 seconds, Memory: 52.01MB

There was 1 error:

1) NewsCorpAU\NLM\Kidspot\Tests\TwigTester::assert_class_is_set_up
Error: __clone method called on non-object

/srv/www/wp-tests/tests/phpunit/includes/testcase.php:239
/srv/www/wp-tests/tests/phpunit/includes/testcase.php:98

ERRORS!
Tests: 1, Assertions: 0, Errors: 1.

#3 @pento
8 years ago

Huh, that's some interesting behaviour. $wp_filter is behaving like it's a WordPress 4.6 install, but the code in testcase.php that you're referencing is from trunk.

Is this running the WordPress Core unit tests, or the tests associated with a project? If it's the later, how are you grabbing the unit test infrastructure? If it's this script, what is your WP_VERSION environment variable set to?

#4 @gregoireduchenews
8 years ago

I am using a docker implementation of VIP Quickstart that I haven't build myself.
However, when I add

<?php
global $wp_version;
echo $wp_version;

in testcase.php

I have the following result:

ing(5) "4.6.1"

Is that any useful?

#5 @pento
8 years ago

  • Milestone Awaiting Review deleted
  • Resolution set to invalid
  • Status changed from new to closed
  • Version trunk deleted

This sounds like a problem with how VIP Quickstart is keeping its WordPress and WordPress tests repos in sync.

If rebuilding your Quickstart instance doesn't help, I recommend opening a ticket on the VIP Quickstart repo, they'll be able to investigate further.

Note: See TracTickets for help on using tickets.