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