Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 4
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * Contact Info block and its child blocks.
4 *
5 * @since 7.1.0
6 *
7 * @package automattic/jetpack
8 */
9
10namespace Automattic\Jetpack\Extensions\Contact_Info;
11
12use Jetpack_Contact_Info_Block;
13
14if ( ! defined( 'ABSPATH' ) ) {
15    exit( 0 );
16}
17
18require_once __DIR__ . '/class-jetpack-contact-info-block.php';
19
20add_action( 'init', array( Jetpack_Contact_Info_Block::class, 'register_block' ) );