mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
27 lines
431 B
PHP
Executable File
27 lines
431 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Models\NotificationModel;
|
|
use App\Models\Usuarios\UserModel;
|
|
|
|
class My extends BaseController
|
|
{
|
|
|
|
private $user_model;
|
|
private $notification_model;
|
|
|
|
function __construct()
|
|
{
|
|
$this->user_model = new UserModel();
|
|
$this->notification_model = new NotificationModel();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
return redirect()->to('profile');
|
|
}
|
|
|
|
|
|
}
|