Completed
Push — master ( 4859e1...c3d3e1 )
by
unknown
11:17
created

ExtendLeadMailboxProcessSettings   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace OroCRM\Bundle\SalesBundle\Model;
4
5
use Oro\Bundle\EmailBundle\Entity\MailboxProcessSettings;
6
7
abstract class ExtendLeadMailboxProcessSettings extends MailboxProcessSettings
8
{
9
    /**
10
     * Constructor
11
     *
12
     * The real implementation of this method is auto generated.
13
     *
14
     * IMPORTANT: If the derived class has own constructor it must call parent constructor.
15
     */
16
    public function __construct()
17
    {
18
    }
19
}
20