ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StringValue.php
Go to the documentation of this file.
1 <?php
2 
20 
22 
23 class StringValue extends ScalarValue
24 {
25  #[\Override]
26  public function setValue($value): void
27  {
28  if (!is_string($value)) {
29  throw new InvalidArgumentException("The value given must be a string! See php-documentation is_string().");
30  }
31  parent::setValue($value);
32  }
33 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...