Closed Gribnif closed 4 years ago
There is a namespace problem in purgeOldCodesFromDatabase(), in that it refers to PDO::PARAM_INT on line 448. This should be \PDO::PARAM_INT instead, so that the built-in PHP PDO class gets used.
PDO::PARAM_INT
\PDO::PARAM_INT
Fixed in #96
Maescool fixed in #96 - thanks!
There is a namespace problem in purgeOldCodesFromDatabase(), in that it refers to
PDO::PARAM_INT
on line 448. This should be\PDO::PARAM_INT
instead, so that the built-in PHP PDO class gets used.