mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
27 lines
445 B
PHP
27 lines
445 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Entities\Credit;
|
|
use CodeIgniter\Model;
|
|
|
|
class CreditModel extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'credits';
|
|
|
|
/**
|
|
* @var class-string<Credit>
|
|
*/
|
|
protected $returnType = Credit::class;
|
|
}
|