FloatInterface.php 361 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\Core\TypedData\Type;
  3. use Drupal\Core\TypedData\PrimitiveInterface;
  4. /**
  5. * Interface for floating-point numbers.
  6. *
  7. * The plain value of a float is a regular PHP float. For setting the value
  8. * any PHP variable that casts to a float may be passed.
  9. *
  10. * @ingroup typed_data
  11. */
  12. interface FloatInterface extends PrimitiveInterface {
  13. }