BooleanInterface.php 191 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\TypedData\Type;
  3. use Drupal\Core\TypedData\PrimitiveInterface;
  4. /**
  5. * Interface for boolean data.
  6. */
  7. interface BooleanInterface extends PrimitiveInterface {
  8. }