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

In::refactorParameterToExpression()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.9332
c 0
b 0
f 0
cc 2
nc 2
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