ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
FloatValue.php
Go to the documentation of this file.
1 <?php
2 
20 
22 
23 class FloatValue extends ScalarValue
24 {
25  public function setValue($value): void
26  {
27  if (!is_float($value)) {
28  throw new \InvalidArgumentException("The value given must be a float! See php-documentation is_float().");
29  }
30 
31  parent::setValue($value); // TODO: Change the autogenerated stub
32  }
33 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...