CESNET / pakiti-server

Pakiti provides a monitoring mechanism to check the patching status of Linux systems.
BSD 2-Clause "Simplified" License
49 stars 35 forks source link

PHP 8 autoloading #189

Closed DanielGeerts closed 4 months ago

DanielGeerts commented 4 months ago

On PHP 8, __autoload has been removed, so replace it with spl_autoload_register, which was introduced in PHP 5.1.

kouril commented 4 months ago

Thanks for the contribution.