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; use Drupal\Core\Entity\EntityTypeInterface; /*..
Decoded Output download
<?php
namespace Drupal\Core\Entity\Query;
use Drupal\Core\Entity\EntityTypeInterface;
/**
* Defines an interface for QueryFactory classes.
*/
interface QueryFactoryInterface {
/**
* Instantiates an entity query for a given entity type.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param string $conjunction
* The operator to use to combine conditions: 'AND' or 'OR'.
*
* @return \Drupal\Core\Entity\Query\QueryInterface
* An entity query for a specific configuration entity type.
*/
public function get(EntityTypeInterface $entity_type, $conjunction);
/**
* Instantiates an aggregation query object for a given entity type.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param string $conjunction
* - AND: all of the conditions on the query need to match.
* - OR: at least one of the conditions on the query need to match.
*
* @return \Drupal\Core\Entity\Query\QueryAggregateInterface
* The query object that can query the given entity type.
*
* @throws \Drupal\Core\Entity\Query\QueryException
*/
public function getAggregate(EntityTypeInterface $entity_type, $conjunction);
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Entity\Query;
use Drupal\Core\Entity\EntityTypeInterface;
/**
* Defines an interface for QueryFactory classes.
*/
interface QueryFactoryInterface {
/**
* Instantiates an entity query for a given entity type.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param string $conjunction
* The operator to use to combine conditions: 'AND' or 'OR'.
*
* @return \Drupal\Core\Entity\Query\QueryInterface
* An entity query for a specific configuration entity type.
*/
public function get(EntityTypeInterface $entity_type, $conjunction);
/**
* Instantiates an aggregation query object for a given entity type.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param string $conjunction
* - AND: all of the conditions on the query need to match.
* - OR: at least one of the conditions on the query need to match.
*
* @return \Drupal\Core\Entity\Query\QueryAggregateInterface
* The query object that can query the given entity type.
*
* @throws \Drupal\Core\Entity\Query\QueryException
*/
public function getAggregate(EntityTypeInterface $entity_type, $conjunction);
}
Function Calls
None |
Stats
MD5 | f6bed7ddcf0d8163f2e24cfea596f9d1 |
Eval Count | 0 |
Decode Time | 132 ms |