SolrRaw::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Kaliop\EzFindSearchEngineBundle\API\Repository\Values\Content\Query\Criterion;
4
5
use eZ\Publish\API\Repository\Values\Content\Query\Criterion as BaseCriterion;
6
7
class SolrRaw extends BaseCriterion
8
{
9
    public function __construct($value)
10
    {
11
        $this->value = $value;
12
    }
13
}