Ignore:
Timestamp:
Feb 4, 2021, 11:55:44 PM (3 years ago)
Author:
chronos
Message:
  • Modified: Initialization of modular system base tables.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Database.php

    r897 r898  
    129129  }
    130130
    131   function delete(string $Table, string $Condition)
     131  function delete(string $Table, string $Condition): void
    132132  {
    133133    $this->query('DELETE FROM `'.$this->Prefix.$Table.'` WHERE '.$Condition);
    134134  }
    135135
    136   function insert(string $Table, array $Data)
     136  function insert(string $Table, array $Data): void
    137137  {
    138138    $this->query($this->GetInsert($Table, $Data));
Note: See TracChangeset for help on using the changeset viewer.