mirror of
https://github.com/pablouser1/ProxiTok.git
synced 2024-12-06 19:27:30 +01:00
12 lines
238 B
PHP
12 lines
238 B
PHP
<?php
|
|
namespace App\Controllers;
|
|
|
|
/**
|
|
* @deprecated Please use UserController::video instead
|
|
*/
|
|
class VideoController {
|
|
static public function get(string $video_id) {
|
|
UserController::video('placeholder', $video_id);
|
|
}
|
|
}
|