Completed
Push — 1.3 ( bc9b2f...44ba31 )
by David
15s queued 13s
created

In::getParameter()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 9.7998
c 0
b 0
f 0
cc 4
nc 4
nop 1
1
<?php
2
3
namespace SQLParser\Node;
4
use Doctrine\DBAL\Connection;
5
use Mouf\Database\MagicQueryException;
6
7
/**
8
 * This class represents an In operation in an SQL expression.
9
 *
10
 * @author David Négrier <[email protected]>
11
 */
12
class In extends AbstractInListOperator
13
{
14
    /**
15
     * Returns the symbol for this operator.
16
     *
17
     * @return string
18
     */
19
    protected function getOperatorSymbol()
20
    {
21
        return 'IN';
22
    }
23
}
24