mirror of
https://github.com/claradex/nativegallery.git
synced 2024-12-23 00:50:55 +03:00
22 lines
No EOL
326 B
PHP
22 lines
No EOL
326 B
PHP
<?php
|
|
namespace App\Controllers;
|
|
|
|
use \App\Services\{Router, Auth, DB, Json};
|
|
use \App\Controllers\ExceptionRegister;
|
|
use \App\Core\Page;
|
|
|
|
class ProfileController
|
|
{
|
|
|
|
|
|
public static function lk()
|
|
{
|
|
Page::set('Profile/LK');
|
|
}
|
|
public static function i()
|
|
{
|
|
Page::set('Profile/Index');
|
|
}
|
|
|
|
|
|
} |