mirror of
https://github.com/claradex/nativegallery.git
synced 2025-02-13 17:53:15 +03:00
21 lines
366 B
PHP
21 lines
366 B
PHP
|
<?php
|
||
|
namespace App\Controllers;
|
||
|
|
||
|
use \App\Services\{Router, Auth, DB, Json};
|
||
|
use \App\Controllers\ExceptionRegister;
|
||
|
use \App\Core\Page;
|
||
|
|
||
|
class ContestsController
|
||
|
{
|
||
|
public static function results()
|
||
|
{
|
||
|
Page::set('Contests/VotingResults');
|
||
|
|
||
|
}
|
||
|
public static function index()
|
||
|
{
|
||
|
Page::set('Contests/VotingIndex');
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|