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

Stub::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
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