Completed
Push — master ( 5ac386...ef9fce )
by Paul
09:44
created

QueryBundle/Entity/VictoireQueryInterface.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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