Completed
Push — nyx-refresh-token-orm-config ( 30c2e2...f6baea )
by Quentin
05:18
created

AccountLoader::retrieveOnApplicationByUsername()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
namespace Majora\Component\OAuth\Loader\Null;
4
5
use Majora\Component\OAuth\Loader\AccountLoaderInterface;
6
use Majora\Component\OAuth\Model\ApplicationInterface;
7
8
/**
9
 * Empty Account loading implementation.
10
 */
11
class AccountLoader implements AccountLoaderInterface
12
{
13
    /**
14
     * @see AccountLoaderInterface::retrieveOnApplicationByUsername()
15
     */
16
    public function retrieveOnApplicationByUsername(ApplicationInterface $application, $username)
17
    {
18
        return;
19
    }
20
}
21