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\Sql; use Drupal\Core\Entity\EntityStorageInterface; ..
Decoded Output download
<?php
namespace Drupal\Core\Entity\Sql;
use Drupal\Core\Entity\EntityStorageInterface;
/**
* A common interface for SQL-based entity storage implementations.
*/
interface SqlEntityStorageInterface extends EntityStorageInterface {
/**
* Gets a table mapping for the entity's SQL tables.
*
* @param \Drupal\Core\Field\FieldStorageDefinitionInterface[] $storage_definitions
* (optional) An array of field storage definitions to be used to compute
* the table mapping. Defaults to the ones provided by the entity field
* manager.
*
* @return \Drupal\Core\Entity\Sql\TableMappingInterface
* A table mapping object for the entity's tables.
*/
public function getTableMapping(?array $storage_definitions = NULL);
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Entity\Sql;
use Drupal\Core\Entity\EntityStorageInterface;
/**
* A common interface for SQL-based entity storage implementations.
*/
interface SqlEntityStorageInterface extends EntityStorageInterface {
/**
* Gets a table mapping for the entity's SQL tables.
*
* @param \Drupal\Core\Field\FieldStorageDefinitionInterface[] $storage_definitions
* (optional) An array of field storage definitions to be used to compute
* the table mapping. Defaults to the ones provided by the entity field
* manager.
*
* @return \Drupal\Core\Entity\Sql\TableMappingInterface
* A table mapping object for the entity's tables.
*/
public function getTableMapping(?array $storage_definitions = NULL);
}
Function Calls
None |
Stats
MD5 | 037842df19d998540fd07f8ed5c810eb |
Eval Count | 0 |
Decode Time | 119 ms |