<?php
namespace Source\Models;
use Source\Core\Model;
/**
* Class Testimonial
* @package Source\Models
*/
class Testimonial extends Model
{
/**
* Testimonial constructor.
*/
public function __construct()
{
parent::__construct("testimonials", ["id"], ["content", "author"]);
}
}