| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
||
| 23 | public function register_via_jetpack() { |
||
| 24 | $result = VaultPress::init()->register_via_jetpack( true ); |
||
| 25 | if ( is_wp_error( $result ) ) { |
||
| 26 | WP_CLI::error( 'Failed to register VaultPress: ' . $result->get_error_message() ); |
||
| 27 | } else { |
||
| 28 | WP_CLI::line( 'Successfully registered VaultPress via Jetpack.' ); |
||
| 29 | } |
||
| 30 | } |
||
| 31 | } |
||
| 32 |