return NULL;
} return $this->arguments;
} /**
* {@inheritdoc}
*/
public function compile(Connection
$connection, PlaceholderInterface
$queryPlaceholder) { // Re-compile if this condition changed or if we are compiled against a
// different query placeholder object.
if ($this->changed ||
isset($this->queryPlaceholderIdentifier
) && ($this->queryPlaceholderIdentifier !=
$queryPlaceholder->
uniqueIdentifier())) { $this->queryPlaceholderIdentifier =
$queryPlaceholder->
uniqueIdentifier();
$condition_fragments =
[];
$arguments =
[];
$conditions =
$this->conditions;
$conjunction =
$conditions['#conjunction'
];
unset($conditions['#conjunction'
]);
foreach ($conditions as $condition) { // Process field.
if ($condition['field'
] instanceof ConditionInterface
) {