Adds some PHP 8 ready changes to compiler classes. Adds Server and Crypt classes.

This commit is contained in:
2023-01-01 04:11:34 +02:00
parent e614f2ec23
commit e771e7d243
71 changed files with 2697 additions and 872 deletions

View File

@@ -173,7 +173,7 @@ class Insert implements InsertInterface
$success = true;
foreach ($items as $item)
{
if ($this->item($item, $table) !== true)
if (!$this->item($item, $table))
{
$success = false;
break;