BusinessEntityInterface
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
getSlug() 0 1 ?
isVisibleOnFront() 0 1 ?
getProxy() 0 1 ?
1
<?php
2
3
namespace Victoire\Bundle\BusinessEntityBundle\Entity;
4
5
interface BusinessEntityInterface
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
6
{
7
    public function getSlug();
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
8
9
    public function isVisibleOnFront();
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
10
11
    public function getProxy();
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
12
}
13