mirror of
https://github.com/elyby/oauth2-server.git
synced 2026-07-26 08:13:16 +05:30
9 lines
121 B
PHP
9 lines
121 B
PHP
<?php
|
|
|
|
namespace OAuth2\Storage;
|
|
|
|
interface SessionInterface
|
|
{
|
|
public function validateAccessToken($access_token);
|
|
}
|