nativegallery/app/Controllers/SearchController.php

18 lines
253 B
PHP
Raw Normal View History

2024-07-08 23:01:54 +03:00
<?php
namespace App\Controllers;
use \App\Services\{Router, Auth, DB, Json};
use \App\Controllers\ExceptionRegister;
use \App\Core\Page;
class SearchController
{
public static function i()
{
2025-02-12 16:35:08 +03:00
Page::set('Search/Index');
2024-07-08 23:01:54 +03:00
}
}