DefaultController.class.php 462 Bytes
Newer Older
Zohten's avatar
Zohten committed
1 2
<?php

Zohten's avatar
Zohten committed
3 4 5 6 7 8
class DefaultController extends Controller
{
    public function __construct($name, $request)
    {
        parent::__construct($name, $request);
    }
Zohten's avatar
Zohten committed
9 10


Zohten's avatar
Zohten committed
11 12 13
    // ==============
    // Actions
    // ==============
Zohten's avatar
Zohten committed
14

Zohten's avatar
Zohten committed
15 16
    public function processRequest()
    {
quentin.vrel's avatar
quentin.vrel committed
17
        return Response::errorResponse('{ "message" : "Unsupported endpoint, please visit the API documentation at https://gvipers.imt-lille-douai.fr/QVrel/projet-cdaw/tree/master/doc."}');
Zohten's avatar
Zohten committed
18
    }
Zohten's avatar
Zohten committed
19
}