Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
astra-sites
/
inc
/
lib
/
ai-builder
/
inc
/
api
/
Editing: api-base.php
<?php /** * API base. * * @package {{package}} * @since 0.0.1 */ namespace AiBuilder\Inc\Api; /** * Api_Base * * @since 0.0.1 */ abstract class Api_Base extends \WP_REST_Controller { /** * Endpoint namespace. * * @var string */ protected $namespace = 'ai-builder/v1'; /** * Constructor * * @since 0.0.1 */ public function __construct() { } /** * Get API namespace. * * @since 0.0.1 * @return string */ public function get_api_namespace() { return $this->namespace; } }
Save
Cancel