Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/TypedData/Type/IntegerInterface.php
  2. 9 core/lib/Drupal/Core/TypedData/Type/IntegerInterface.php

Namespace

Drupal\Core\TypedData\Type

File

core/lib/Drupal/Core/TypedData/Type/IntegerInterface.php
View source
<?php

namespace Drupal\Core\TypedData\Type;

use Drupal\Core\TypedData\PrimitiveInterface;

/**
 * Interface for integer numbers.
 *
 * The plain value of an integer is a regular PHP integer. For setting the value
 * any PHP variable that casts to an integer may be passed.
 *
 * @ingroup typed_data
 */
interface IntegerInterface extends PrimitiveInterface {

}

Interfaces

Namesort descending Description
IntegerInterface Interface for integer numbers.