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; }