Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 5 |
Condition | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 5 |
compile | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
exists | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
notExists | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Entity\Query\Null\Condition. | |
*/ | |
namespace Drupal\Core\Entity\Query\Null; | |
use Drupal\Core\Entity\Query\ConditionBase; | |
/** | |
* Defines the condition class for the null entity query. | |
*/ | |
class Condition extends ConditionBase { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function compile($query) { | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function exists($field, $langcode = NULL) { | |
return $this->condition($field, NULL, 'IS NOT NULL', $langcode); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function notExists($field, $langcode = NULL) { | |
return $this->condition($field, NULL, 'IS NULL', $langcode); | |
} | |
} |