handle = $handle; $this->args = wp_parse_args( $args, array( 'src' => '', 'dependencies' => array(), 'version' => GOOGLESITEKIT_VERSION, 'fallback' => false, 'post_register' => null, 'post_enqueue' => null, ) ); } /** * Gets the notice handle. * * @since 1.0.0 * * @return string Unique notice handle. */ public function get_handle() { return $this->handle; } /** * Registers the asset. * * @since 1.0.0 */ abstract public function register(); /** * Enqueues the asset. * * @since 1.0.0 */ abstract public function enqueue(); }