Completed
Pull Request — master (#1320)
by Maksim
14:06
created

DoctrineMongoDBCustomRepositoryMock   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A createCustomQueryBuilder() 0 1 1
1
<?php
2
namespace FOS\ElasticaBundle\Tests\Mocks;
3
4
use Doctrine\ODM\MongoDB\DocumentRepository;
5
6
class DoctrineMongoDBCustomRepositoryMock extends DocumentRepository
7
{
8
    public function createCustomQueryBuilder() {}
9
}
10