VictoireQueryInterface::setQuery()
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\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