| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 25 | public function __construct($allowEmpty = false) |
||
| 26 | { |
||
| 27 | $this->allowEmpty = $allowEmpty; |
||
| 28 | |||
| 29 | $this->reflectionProperty = new \ReflectionProperty( |
||
| 30 | 'Saxulum\ElasticSearchQueryBuilder\Node\AbstractNode', |
||
| 31 | 'parent' |
||
| 32 | ) |
||
| 33 | ; |
||
| 34 | $this->reflectionProperty->setAccessible(true); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |