for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mhorninger\MySQLite\MySQL;
trait NumericExtended
{
// phpcs:disable
public static function mysql_mod($number, $divisor)
//phpcs:enable
if ($number && $divisor) {
return fmod($number, $divisor);
}