ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
MaxMinBase.php
Go to the documentation of this file.
1<?php
2
4
5abstract class MaxMinBase
6{
7 protected static function datatypeAdjustmentAllowStrings($value)
8 {
9 if (is_bool($value)) {
10 return (int) $value;
11 } elseif (is_string($value)) {
12 return 0;
13 }
14
15 return $value;
16 }
17}
An exception for terminatinating execution or to throw for unit testing.