Completed
Push — remove-extra-tables ( 85f800 )
by Kiyotaka
05:51
created

NopAnnotationDriver::getAllClassNames()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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