blob: 927321e09a73f0f741c3911a52ef9c338a9b3058 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
class config {
const TEMPHUMD_NO_TEMP = 1 << 0;
const TEMPHUMD_NO_HUM = 1 << 1;
public static function get(string $key) {
global $config;
return is_callable($config[$key]) ? $config[$key]() : $config[$key];
}
}
|