Completed
Push — orm ( df18d5 )
by
unknown
06:37
created

RefreshTokenLoader   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A retrieveByHash() 0 4 1
1
<?php
2
3
namespace Majora\Component\OAuth\Loader\ORM;
4
5
use Majora\Component\OAuth\Loader\RefreshTokenLoaderInterface;
6
use Majora\Component\OAuth\Model\RefreshTokenInterface;
7
8
/**
9
 * ORM Refresh token loading.
10
 */
11
class RefreshTokenLoader implements RefreshTokenLoaderInterface
12
{
13
    /**
14
     * @inheritdoc
15
     */
16
    public function retrieveByHash($hash)
17
    {
18
        // TODO: Implement retrieveByHash() method.
19
    }
20
}