aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/Lti/Controller/PlatformBaseController.php
blob: 73e1709e5a54e74f319e62eeff92f908d589a417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
namespace Studip\Lti\Controller;

use AuthenticatedController;
use Studip\OAuth2\NegotiatesWithPsr7;

abstract class PlatformBaseController extends AuthenticatedController
{
    protected $allow_nobody = true;
    protected $with_session = false;

    use NegotiatesWithPsr7;
}