mirror of
https://github.com/claradex/nativegallery.git
synced 2025-02-13 09:43:14 +03:00
21 lines
No EOL
366 B
PHP
21 lines
No EOL
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');
|
|
|
|
}
|
|
|
|
} |