Completed
Push — master ( 19c31c...2dfe88 )
by Mario
04:59 queued 02:02
created

AuthenticationService   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 5
Bugs 0 Features 2
Metric Value
wmc 2
c 5
b 0
f 2
lcom 0
cbo 1
dl 0
loc 18
ccs 4
cts 4
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getSessionCookie() 0 4 1
A destroySession() 0 4 1
1
<?php
2
3
namespace Marek\Toggable\Service\Authentication;
4
5
use Marek\Toggable\API\Toggl\AuthenticationServiceInterface;
6
use Marek\Toggable\Service\AbstractService;
7
8
/**
9
 * Class AuthenticationService
10
 * @package Marek\Toggable\Service\Authentication
11
 */
12
class AuthenticationService extends AbstractService implements AuthenticationServiceInterface
13
{
14
    /**
15
     * @inheritdoc
16
     */
17 1
    public function getSessionCookie()
18
    {
19 1
        throw new \RuntimeException('Not implemented');
20
    }
21
22
    /**
23
     * @inheritdoc
24
     */
25 1
    public function destroySession()
26
    {
27 1
        throw new \RuntimeException('Not implemented');
28
    }
29
}
30