Files
thetempusproject/app/plugins/testing/models/testing.php
2024-08-04 21:15:59 -04:00

30 lines
798 B
PHP

<?php
/**
* app/plugins/notes/models/notebooks.php
*
* This class is used for the manipulation of the notebooks database table.
*
* @package TP Notes
* @version 3.0
* @author Joey Kimsey <Joey@thetempusproject.com>
* @link https://TheTempusProject.com
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
*/
namespace TheTempusProject\Models;
use TheTempusProject\Bedrock\Classes\Config;
use TheTempusProject\Bedrock\Functions\Check;
use TheTempusProject\Canary\Canary as Debug;
use TheTempusProject\Classes\DatabaseModel;
use TheTempusProject\TheTempusProject as App;
use TheTempusProject\Houdini\Classes\Filters;
class Testing extends DatabaseModel {
/**
* The model constructor.
*/
public function __construct() {
parent::__construct();
}
}