Skip to content
IntegerData.php 583 B
Newer Older
use Drupal\Core\TypedData\PrimitiveBase;
use Drupal\Core\TypedData\Type\IntegerInterface;

/**
 * The integer data type.
 *
 * 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.
class IntegerData extends PrimitiveBase implements IntegerInterface {
   */
  public function getCastedValue() {
    return (int) $this->value;
  }