EntityMapper   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 4
Bugs 1 Features 0
Metric Value
wmc 1
c 4
b 1
f 0
lcom 0
cbo 1
dl 0
loc 13
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A isTransient() 0 4 1
1
<?php
2
3
namespace LaravelDoctrine\Fluent\Mappers;
4
5
final class EntityMapper extends AbstractMapper
6
{
7
    /**
8
     * Returns whether the class with the specified name should have its metadata loaded.
9
     * This is only the case if it is either mapped as an Entity or a MappedSuperclass.
10
     *
11
     * @return bool
12
     */
13 2
    public function isTransient()
14
    {
15 2
        return false;
16
    }
17
}
18