Запись банковских логов в sqlite.
This commit is contained in:
parent
10f3bab59d
commit
625793c0f5
@ -4,6 +4,7 @@
|
||||
* Date: 03.07.2020
|
||||
* Time: 07:24
|
||||
*/
|
||||
|
||||
namespace Battles;
|
||||
|
||||
use Config;
|
||||
@ -91,6 +92,7 @@ class Bank
|
||||
}
|
||||
|
||||
$db = new SQLite3('databases/logs.sqlite');
|
||||
$db->exec("CREATE TABLE IF NOT EXISTS bank_logs (id integer constraint bank_logs_pk primary key autoincrement, sender_id integer, receiver_id integer, amount integer, type text, text text)");
|
||||
$logLine = $db->prepare("INSERT INTO bank_logs (sender_id, receiver_id, amount, type, text) VALUES (?, ?, ?, ?, ?)");
|
||||
$logLine->bindParam(1, $senderId, SQLITE3_INTEGER);
|
||||
$logLine->bindParam(2, $receiverId, SQLITE3_INTEGER);
|
||||
@ -174,7 +176,7 @@ class Bank
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
public function withdrawMoney(int $amount):array
|
||||
public function withdrawMoney(int $amount): array
|
||||
{
|
||||
if ($amount <= 0) {
|
||||
throw new GameException(self::ERROR_WRONG_AMOUNT);
|
||||
|
Loading…
x
Reference in New Issue
Block a user