Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace MediaWiki\Extension\OAuth\Entity; |
4 | |
5 | use League\OAuth2\Server\Entities\ClientEntityInterface; |
6 | |
7 | /** |
8 | * Interface MWClientEntityInterface |
9 | * |
10 | * Empty interface used by ClientEntity and OAuthClaimStoreGetClaimsHook to not leak ClientEntityInterface to |
11 | * other extensions that depend on this OAuth extension. |
12 | */ |
13 | interface MWClientEntityInterface extends ClientEntityInterface { |
14 | |
15 | } |