Having
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 2
c 1
b 0
f 0
dl 0
loc 6
1
<?php
2
3
namespace Rougin\Windstorm\Doctrine;
4
5
use Rougin\Windstorm\HavingInterface;
6
7
/**
8
 * Having Query
9
 *
10
 * @package Windstorm
11
 * @author  Rougin Gutib <[email protected]>
12
 */
13
class Having extends Where implements HavingInterface
14
{
15
    /**
16
     * @var string
17
     */
18
    protected $method = 'having';
19
}
20