MVC_Recettes/Kernel/Utils.php
2023-01-22 21:43:13 +01:00

19 lines
325 B
PHP

<?php
final class Utils
{
public static function getOrDie($DICT, $key)
{
if (isset($DICT[$key])) return $DICT[$key];
else die("Key $key not present");
}
public static function intOrDie($data)
{
if (is_numeric($data)) return (int) $data;
else die("Not an int");
}
}