Blackhole::fetchTranslation()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 2
crap 2
1
<?php
2
3
namespace Happyr\TranslationBundle\Service;
4
5
use Happyr\TranslationBundle\Model\Message;
6
7
class Blackhole implements TranslationServiceInterface
8
{
9
    /**
10
     * @inheritDoc
11
     */
12
    public function fetchTranslation(Message $message, $updateFs = false)
13
    {
14
    }
15
16
    /**
17
     * @inheritDoc
18
     */
19
    public function updateTranslation(Message $message)
20
    {
21
    }
22
23
    /**
24
     * @inheritDoc
25
     */
26
    public function flagTranslation(Message $message, $type = 0)
27
    {
28
    }
29
30
    /**
31
     * @inheritDoc
32
     */
33
    public function createAsset(Message $message)
34
    {
35
    }
36
37
    /**
38
     * @inheritDoc
39
     */
40
    public function downloadAllTranslations()
41
    {
42
    }
43
44
    /**
45
     * @inheritDoc
46
     */
47
    public function importAllTranslations()
48
    {
49
    }
50
51
    /**
52
     * @inheritDoc
53
     */
54
    public function synchronizeAllTranslations()
55
    {
56
    }
57
58
    /**
59
     * @inheritDoc
60
     */
61
    public function uploadAllTranslations()
62
    {
63
    }
64
}