nginx-rtmp-auth/src/Deblan/Bundle/RtmpBundle/Controller/AuthController.php

24 lines
521 B
PHP
Raw Normal View History

2016-10-08 14:40:30 +02:00
<?php
namespace Deblan\Bundle\RtmpBundle\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\Routing\Annotation\Route;
/**
* @author Simon Vieille <simon@deblan.fr>
*/
class AuthController extends Controller
{
/**
* @Route("/auth", name="auth")
* @param Request $request
*
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response
*/
public function authAction(Request $request)
{
}
}