AccountRepository::persist()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 3
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 1
crap 2
1
<?php
2
3
namespace Majora\Component\OAuth\Repository\Null;
4
5
use Majora\Component\OAuth\Model\AccountInterface;
6
use Majora\Component\OAuth\Repository\AccountRepositoryInterface;
7
8
/**
9
 * Account repository implementation.
10
 */
11
class AccountRepository implements AccountRepositoryInterface
12
{
13
    /**
14
     * @see AccountRepositoryInterface::persist()
15
     */
16
    public function persist(AccountInterface $account)
17
    {
18
    }
19
20
    /**
21
     * @see AccountRepositoryInterface::remove()
22
     */
23
    public function remove(AccountInterface $account)
24
    {
25
    }
26
}
27