BusinessEntityInterface::isVisibleOnFront()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
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