Completed
Push — 1.9 ( 5c3e2e...1529fd )
by
unknown
60:20
created

RFMAwareStub   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 18
rs 10
c 1
b 1
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setDataChannel() 0 3 1
A getDataChannel() 0 3 1
1
<?php
2
3
namespace OroCRM\Bundle\AnalyticsBundle\Tests\Unit\Model\Stub;
4
5
use OroCRM\Bundle\AnalyticsBundle\Model\RFMAwareInterface;
6
use OroCRM\Bundle\AnalyticsBundle\Model\RFMAwareTrait;
7
use OroCRM\Bundle\ChannelBundle\Entity\Channel;
8
9
class RFMAwareStub implements RFMAwareInterface
10
{
11
    use RFMAwareTrait;
12
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public function setDataChannel(Channel $channel = null)
17
    {
18
    }
19
20
    /**
21
     * {@inheritdoc}
22
     */
23
    public function getDataChannel()
24
    {
25
    }
26
}
27