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

AuthorizationServerMiddleware::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
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 Psr7AuthorizationServerMiddleware or SymfonyAuthorizationServerMiddleware
14
 */
15
class AuthorizationServerMiddleware extends PSR7AuthorizationServerMiddleware
16
{
17
}
18