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\Plugin\Validation\Constraint; use Symfony\Component\V..
Decoded Output download
<?php
namespace Drupal\Core\Entity\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Validates the EntityType constraint.
*/
class EntityTypeConstraintValidator extends ConstraintValidator {
/**
* {@inheritdoc}
*/
public function validate($entity, Constraint $constraint): void {
if (!isset($entity)) {
return;
}
/** @var \Drupal\Core\Entity\EntityInterface $entity */
if ($entity->getEntityTypeId() != $constraint->type) {
$this->context->addViolation($constraint->message, ['%type' => $constraint->type]);
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Entity\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* Validates the EntityType constraint.
*/
class EntityTypeConstraintValidator extends ConstraintValidator {
/**
* {@inheritdoc}
*/
public function validate($entity, Constraint $constraint): void {
if (!isset($entity)) {
return;
}
/** @var \Drupal\Core\Entity\EntityInterface $entity */
if ($entity->getEntityTypeId() != $constraint->type) {
$this->context->addViolation($constraint->message, ['%type' => $constraint->type]);
}
}
}
Function Calls
None |
Stats
MD5 | 93f32ee398d23cb70f0236270f444497 |
Eval Count | 0 |
Decode Time | 100 ms |