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

RFMAwareStub::setDataChannel()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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