HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u106391720 (10342218)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /homepages/34/d890102484/htdocs/wp-content/plugins/ninja-forms/includes/Abstracts/Routes.php
<?php if ( ! defined( 'ABSPATH' ) ) exit;

/**
 * Class NF_Abstracts_Routes
 */
abstract class NF_Abstracts_Routes
{
    /**
    * Register the API routes
    *
    *  @since 3.4.33
    */
    public function __construct(){
        add_action('rest_api_init', [ $this, 'register_routes'] );
    }

    /**
     * Register Routes
     */
    public abstract function register_routes();

}