
[smarcet] - #5035 - Api Endpoints Administration upgrade from laravel 4.0.* to 4.1.* ** please remove your vendor folder and composer.lock and re run php composer.phar install Change-Id: Idc23e084235de4f7258d1e769228e4eba44c69f0
19 lines
448 B
PHP
19 lines
448 B
PHP
<?php
|
|
|
|
use oauth2\IResourceServerContext;
|
|
use utils\services\ILogService;
|
|
|
|
/**
|
|
* Class OAuth2ProtectedController
|
|
*/
|
|
class OAuth2ProtectedController extends JsonController {
|
|
|
|
protected $resource_server_context;
|
|
|
|
public function __construct(IResourceServerContext $resource_server_context, ILogService $log_service)
|
|
{
|
|
parent::__construct($log_service);
|
|
$this->resource_server_context = $resource_server_context;
|
|
}
|
|
|
|
} |