Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Drupal\Core\Entity\Query; /** * Defines a common base class for all agg..
Decoded Output download
<?php
namespace Drupal\Core\Entity\Query;
/**
* Defines a common base class for all aggregation entity condition implementations.
*/
abstract class ConditionAggregateBase extends ConditionFundamentals implements ConditionAggregateInterface {
/**
* {@inheritdoc}
*/
public function condition($field, $function = NULL, $value = NULL, $operator = NULL, $langcode = NULL) {
$this->conditions[] = [
'field' => $field,
'function' => $function,
'value' => $value,
'operator' => $operator,
'langcode' => $langcode,
];
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Entity\Query;
/**
* Defines a common base class for all aggregation entity condition implementations.
*/
abstract class ConditionAggregateBase extends ConditionFundamentals implements ConditionAggregateInterface {
/**
* {@inheritdoc}
*/
public function condition($field, $function = NULL, $value = NULL, $operator = NULL, $langcode = NULL) {
$this->conditions[] = [
'field' => $field,
'function' => $function,
'value' => $value,
'operator' => $operator,
'langcode' => $langcode,
];
return $this;
}
}
Function Calls
None |
Stats
MD5 | 642407b524975cc0bc9e73034e39508f |
Eval Count | 0 |
Decode Time | 104 ms |