G| 6v| R|  @v| libpcre2-8.so.0/lib/x86_64-linux-gnulibpcre2-8.so.0p1v| ;v| 6v| y| p1v| ;v| 6v| y| 6v| y| 6v| y| ;v| 6v| ;v| 6v| y| p1v| ;v| 6v| y| y| p1v| 6v| ;v| y| ,Vii ,V|,Vui ,Vp,Vti ,Ve,V ,VZ,V ,VP,Vii ,V,V,VE,V ,V:,V ,V/,V ,V$,V ,V@>usr| r| r| r| registered_block_styles[ $block_name ]; } return array(); } /** * Checks if a block style is registered for the given block type. * * @since 5.3.0 * * @param string $block_name Block type name including namespace. * @param string $block_style_name Block style name. * @return bool True if the block style is registered, false otherwise. */ public function is_registered( $block_name, $block_style_name ) { return isset( $this->registered_block_styles[ $block_name ][ $block_style_name ] ); } /** * Utility method to retrieve the main instance of the class. * * The instance will be created if it does not exist yet. * * @since 5.3.0 * * @return WP_Block_Styles_Registry The main instance. */ public static function get_instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } }