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

ApplicationLoader::retrieveByApiKeyAndSecret()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 2
1
<?php
2
3
namespace Majora\Component\OAuth\Loader\ORM;
4
5
use Majora\Component\OAuth\Loader\ApplicationLoaderInterface;
6
use Majora\Framework\Loader\Bridge\Doctrine\AbstractDoctrineLoader;
7
use Majora\Framework\Loader\Bridge\Doctrine\DoctrineLoaderTrait;
8
9
/**
10
 * ORM Application loading.
11
 */
12
class ApplicationLoader extends AbstractDoctrineLoader implements ApplicationLoaderInterface
13
{
14
    use DoctrineLoaderTrait;
15
16
    /**
17
     * @inheritdoc
18
     */
19
    public function retrieveByApiKeyAndSecret($apiKey, $secret)
20
    {
21
        // TODO: Implement retrieveByApiKeyAndSecret() method.
22
    }
23
}