Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
Navigation
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * Navigation REST route
4 *
5 * @package automattic/jetpack-import
6 */
7
8namespace Automattic\Jetpack\Import\Endpoints;
9
10if ( ! defined( 'ABSPATH' ) ) {
11    exit( 0 );
12}
13
14/**
15 * Navigation Block
16 */
17class Navigation extends \WP_REST_Posts_Controller {
18
19    /**
20     * Base class
21     */
22    use Import;
23
24    /**
25     * The Import ID add a new item to the schema.
26     */
27    use Import_ID;
28
29    /**
30     * Whether the controller supports batching.
31     *
32     * @var array
33     */
34    protected $allow_batch = array( 'v1' => true );
35
36    /**
37     * Constructor.
38     */
39    public function __construct() {
40        parent::__construct( 'wp_navigation' );
41    }
42}