Blackhole   A
last analyzed

Complexity

Total Complexity 8

Size/Duplication

Total Lines 58
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 8
lcom 0
cbo 0
dl 0
loc 58
ccs 0
cts 16
cp 0
rs 10
c 1
b 0
f 0

8 Methods

Rating   Name   Duplication   Size   Complexity  
A fetchTranslation() 0 3 1
A updateTranslation() 0 3 1
A flagTranslation() 0 3 1
A createAsset() 0 3 1
A downloadAllTranslations() 0 3 1
A importAllTranslations() 0 3 1
A synchronizeAllTranslations() 0 3 1
A uploadAllTranslations() 0 3 1
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
}