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

AuthenticationService::destroySession()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 3
Bugs 0 Features 2
Metric Value
c 3
b 0
f 2
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 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