GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

getRelationProvider()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
3
namespace Hateoas\Configuration\Provider\Resolver;
4
5
use Hateoas\Configuration\RelationProvider as RelationProviderConfiguration;
6
7
/**
8
 * @author Adrien Brault <[email protected]>
9
 */
10
interface RelationProviderResolverInterface
11
{
12
    /**
13
     * @param  object                        $object
14
     * @return callable|null                 Returns `null` if it does not support this RelationProvider,
15
     *                                       a `callable` otherwise.
16
     */
17
    public function getRelationProvider(RelationProviderConfiguration $configuration, $object);
18
}
19