File "MessageRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Message/MessageRepository.php
File size: 284 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Message;
use App\Models\Message;
use App\Repositories\Base\BaseRepository;
class MessageRepository extends BaseRepository implements MessageInterface {
public function __construct(Message $model) {
parent::__construct($model);
}
}