Passed
Pull Request — master (#6834)
by Massimiliano
15:53
created

KeywordListMock   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
A getKeywords() 0 4 1
1
<?php
2
3
namespace Doctrine\Tests\Mocks;
4
5
use Doctrine\DBAL\Platforms\Keywords\KeywordList;
6
7
/**
8
 * Mock class for KeywordList.
9
 */
10
class KeywordListMock extends KeywordList
11
{
12
    /**
13
     * {@inheritdoc}
14
     */
15
    public function getName()
16
    {
17
        return 'Mock';
18
    }
19
20
    /**
21
     * {@inheritdoc}
22
     */
23
    protected function getKeywords()
24
    {
25
        return [];
26
    }
27
}
28