automatewoo/includes/Rest_Api/Utilities/Controller_Namespace.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

27 lines
421 B
PHP

<?php
namespace AutomateWoo\Rest_Api\Utilities;
/**
* Controller_Namespace Trait.
*
* Used to provide the same namespace to all of our endpoints.
*
* @since 4.9.0
*/
trait Controller_Namespace {
/**
* Controller namespace.
*
* @var string
*/
protected $namespace;
/**
* Constructor for classes that utilize this trait.
*/
public function __construct() {
$this->namespace = 'automatewoo';
}
}