mirror of
https://github.com/claradex/nativegallery.git
synced 2024-11-15 11:39:07 +03:00
18 lines
247 B
PHP
18 lines
247 B
PHP
|
<?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()
|
||
|
{
|
||
|
Page::set('Search');
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|