Completed
Pull Request — master (#636)
by Alex
67:31 queued 32:31
created

ResourceServerMiddleware::__invoke()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 16
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 16
rs 9.4285
cc 3
eloc 9
nc 3
nop 3
1
<?php
2
/**
3
 * @author      Alex Bilbie <[email protected]>
4
 * @copyright   Copyright (c) Alex Bilbie
5
 * @license     http://mit-license.org/
6
 *
7
 * @link        https://github.com/thephpleague/oauth2-server
8
 */
9
10
namespace League\OAuth2\Server\Middleware;
11
12
/**
13
 * @deprecated Use the Psr7ResourceServerMiddleware or SymfonyResourceServerMiddleware
14
 */
15
class ResourceServerMiddleware extends Psr7ResourceServerMiddleware
16
{
17
}
18