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

ApplicationRepository   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A persist() 0 3 1
A remove() 0 3 1
1
<?php
2
3
namespace Majora\Component\OAuth\Repository\Null;
4
5
use Majora\Component\OAuth\Repository\ApplicationRepositoryInterface;
6
7
/**
8
 * Application repository empty implementation.
9
 */
10
class ApplicationRepository implements ApplicationRepositoryInterface
11
{
12
    /**
13
     * @see TokenRepositoryInterface::persist()
14
     */
15
    public function persist(ApplicationInterface $application)
16
    {
17
    }
18
19
    /**
20
     * @see TokenRepositoryInterface::remove()
21
     */
22
    public function remove(ApplicationInterface $application)
23
    {
24
    }
25
}
26