Completed
Branch master (a35590)
by Anton
04:28 queued 01:35
created

Stub   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Covery\Client\Identities;
4
5
/**
6
 * Class Stub
7
 *
8
 * Stub identity is used for cases, when no other identity can be applied
9
 *
10
 * @package Covery\Client\Identities
11
 */
12
class Stub extends AbstractIdentityNode
13
{
14
    /**
15
     * Stub constructor.
16
     */
17
    public function __construct()
18
    {
19
        parent::__construct('gateId', 1);
20
    }
21
}
22