mirror of
https://github.com/proelements/proelements.git
synced 2026-04-05 20:13:47 +00:00
14 lines
255 B
PHP
14 lines
255 B
PHP
<?php
|
|
namespace ElementorPro\Data\Base;
|
|
|
|
use Elementor\Data\Base\Controller as Controller_Base;
|
|
|
|
abstract class Controller extends Controller_Base {
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
|
|
$this->namespace = 'elementor-pro/v1';
|
|
}
|
|
}
|