ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
BooleanValue.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class BooleanValue extends ScalarValue
6 {
7  public function setValue($boolean)
8  {
9  if (!is_bool($boolean)) {
10  throw new InvalidArgumentException("The value given must be a boolean! See php-documentation is_bool().");
11  }
12  $this->value = $boolean;
13  }
14 }