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\Validation\Attribute; use Drupal\Component\Plugin\Attribute\..

Decoded Output download

<?php

namespace Drupal\Core\Validation\Attribute;

use Drupal\Component\Plugin\Attribute\Plugin;
use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * Defines a Constraint attribute object.
 *
 * Plugin Namespace: Plugin\Validation\Constraint
 *
 * For a working example, see
 * \Drupal\Core\Validation\Plugin\Validation\Constraint\LengthConstraint
 *
 * @see \Drupal\Core\Validation\ConstraintManager
 * @see \Symfony\Component\Validator\Constraint
 * @see hook_validation_constraint_alter()
 * @see plugin_api
 */
#[\Attribute(\Attribute::TARGET_CLASS)]
class Constraint extends Plugin {

  /**
   * Constructs a Constraint attribute.
   *
   * @param string $id
   *   The constraint plugin ID.
   * @param \Drupal\Core\StringTranslation\TranslatableMarkup|null $label
   *   (optional) The human-readable name of the constraint plugin.
   * @param string|string[]|false $type
   *   (optional) DataType plugin IDs for which this constraint applies. Valid
   *   values are any types registered by the typed data API, or an array of
   *   multiple type names. For supporting all types, FALSE may be specified.
   *   The key defaults to an empty array, which indicates no types are
   *   supported.
   * @param class-string|null $deriver
   *   (optional) The deriver class.
   */
  public function __construct(
    public readonly string $id,
    public readonly ?TranslatableMarkup $label = NULL,
    public readonly string|array|false $type = [],
    public readonly ?string $deriver = NULL,
  ) {}

}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Drupal\Core\Validation\Attribute;

use Drupal\Component\Plugin\Attribute\Plugin;
use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * Defines a Constraint attribute object.
 *
 * Plugin Namespace: Plugin\Validation\Constraint
 *
 * For a working example, see
 * \Drupal\Core\Validation\Plugin\Validation\Constraint\LengthConstraint
 *
 * @see \Drupal\Core\Validation\ConstraintManager
 * @see \Symfony\Component\Validator\Constraint
 * @see hook_validation_constraint_alter()
 * @see plugin_api
 */
#[\Attribute(\Attribute::TARGET_CLASS)]
class Constraint extends Plugin {

  /**
   * Constructs a Constraint attribute.
   *
   * @param string $id
   *   The constraint plugin ID.
   * @param \Drupal\Core\StringTranslation\TranslatableMarkup|null $label
   *   (optional) The human-readable name of the constraint plugin.
   * @param string|string[]|false $type
   *   (optional) DataType plugin IDs for which this constraint applies. Valid
   *   values are any types registered by the typed data API, or an array of
   *   multiple type names. For supporting all types, FALSE may be specified.
   *   The key defaults to an empty array, which indicates no types are
   *   supported.
   * @param class-string|null $deriver
   *   (optional) The deriver class.
   */
  public function __construct(
    public readonly string $id,
    public readonly ?TranslatableMarkup $label = NULL,
    public readonly string|array|false $type = [],
    public readonly ?string $deriver = NULL,
  ) {}

}

Function Calls

None

Variables

None

Stats

MD5 233c185f1df4a7df3fe4e2aa7cd274af
Eval Count 0
Decode Time 93 ms