Completed
Branch develop (8166a6)
by Romain
01:52
created

AccountUnlink   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
namespace Kerox\Messenger\Model\Common\Buttons;
3
4
class AccountUnlink extends AbstractButtons
5
{
6
7
    /**
8
     * AccountUnlink constructor.
9
     */
10
    public function __construct()
11
    {
12
        parent::__construct(self::TYPE_ACCOUNT_UNLINK);
13
    }
14
}
15