| Conditions | 9 |
| Paths | 11 |
| Total Lines | 47 |
| Lines | 14 |
| Ratio | 29.79 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 54 | public function register_rest_routes() { |
||
| 55 | |||
| 56 | //Invoices |
||
| 57 | $this->invoices_controller->register_routes(); |
||
| 58 | |||
| 59 | } |
||
| 60 | |||
| 61 | |||
| 62 | /** |
||
| 63 | * Loads API files and controllers |
||
| 64 | * |
||
| 65 | * @return void |
||
| 66 | */ |
||
| 67 | protected function includes() { |
||
| 68 | |||
| 69 | // Invoices |
||
| 70 | require_once( WPINV_PLUGIN_DIR . 'includes/api/class-wpinv-rest-invoice-controller.php' ); |
||
| 71 | |||
| 72 | } |
||
| 73 | |||
| 74 | |||
| 75 | } |