Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __construct( Manager $connection ) { |
||
27 | $this->connection = $connection; |
||
28 | |||
29 | // Register a site. |
||
30 | register_rest_route( |
||
31 | 'jetpack/v4', |
||
32 | '/verify_registration', |
||
33 | array( |
||
34 | 'methods' => \WP_REST_Server::EDITABLE, |
||
35 | 'callback' => array( $this, 'verify_registration' ), |
||
36 | ) |
||
37 | ); |
||
38 | } |
||
39 | |||
55 |