VictoireQueryInterface
last analyzed

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

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

6 Methods

Rating   Name   Duplication   Size   Complexity  
getQuery() 0 1 ?
setQuery() 0 1 ?
getOrderBy() 0 1 ?
setOrderBy() 0 1 ?
getBusinessEntity() 0 1 ?
setBusinessEntity() 0 1 ?
1
<?php
2
3
namespace Victoire\Bundle\QueryBundle\Entity;
4
5
use Victoire\Bundle\BusinessEntityBundle\Entity\BusinessEntity;
6
7
interface VictoireQueryInterface
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
8
{
9
    public function getQuery();
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
10
11
    public function setQuery($query);
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
12
13
    public function getOrderBy();
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
14
15
    public function setOrderBy($orderBy);
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
16
17
    public function getBusinessEntity();
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
18
19
    public function setBusinessEntity(BusinessEntity $businessEntity);
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
20
}
21