gist/src/Gist/Controller/MyController.php
Simon Vieille 51d736cb1a Controller: refactoring ($app access)
"GistService" renamed as "Gist"
Authentication
2015-11-23 13:19:13 +01:00

18 lines
288 B
PHP

<?php
namespace Gist\Controller;
use Symfony\Component\HttpFoundation\Request;
/**
* Class MyController
* @author Simon Vieille <simon@deblan.fr>
*/
class MyController extends Controller
{
public function myAction(Request $request)
{
$app = $this->getApp();
}
}