Completed
Pull Request — 4.0 (#4632)
by Kentaro
04:48
created

NopAnnotationDriver   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getAllClassNames() 0 4 1
1
<?php
2
/*
3
 * This file is part of EC-CUBE
4
 *
5
 * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
6
 *
7
 * http://www.ec-cube.co.jp/
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace Eccube\Doctrine\ORM\Mapping\Driver;
14
15
16
class NopAnnotationDriver extends \Doctrine\ORM\Mapping\Driver\AnnotationDriver
17
{
18
    public function getAllClassNames()
19
    {
20
        return [];
21
    }
22
}
23