Compare commits

...

2 Commits
v1.1.0 ... main

Author SHA1 Message Date
DrMaxNix 24ad1e34cf Merge pull request 'v1.1.1' (#1) from dev into main
Reviewed-on: #1
2023-04-04 14:12:18 +02:00
DrMaxNix 3476d27d67 🧑‍💻 enable strict types 2023-04-04 14:11:45 +02:00
1 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
#!/usr/bin/php
<?php
/*! untisbot v1.1.0 | (c) 2023 DrMaxNix | www.drmaxnix.de */
/*! untisbot v1.1.1 | (c) 2023 DrMaxNix | www.drmaxnix.de */
declare(strict_types = 1);
define("CONFIG_PATH", "/etc/untisbot/untisbot.ini");
define("UNTISBOT_VERSION", "1.1.0");
define("UNTISBOT_VERSION", "1.1.1");
@ -1486,4 +1487,4 @@
$this->last = $time;
}
}
?>
?>