Files
thetempusproject/app/resources/nodels/example.php
2024-08-04 21:15:59 -04:00

21 lines
442 B
PHP

<?php
/**
* app/resources/models/example.php
*
* This is an example model.
*
* @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\Model;
class Example extends Model {
public function __construct() {
parent::__construct();
}
}