Files
float-gate/app/Models/myfitUserProfile.php
T
2023-02-11 00:01:39 -05:00

27 lines
500 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class myfitUserProfile extends Model
{
protected $db;
public $con_name = 'mermsemr';
public function __construct()
{
parent::__construct();
$this->db = \Config\Database::connect($this->con_name);
}
public function accountResetPassword($in)
{
return ['msg' => 'Profile Information'];
}
public function getProfileInfo($in)
{
return ['msg' => 'Profile Information'];
}
}