Auto stash before merge of "main" and "origin/main"

This commit is contained in:
2024-02-09 21:11:19 -06:00
parent f5d267ea98
commit d21d91b80e
17 changed files with 844 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace Hpz937\BillReminder\Database;
interface DatabaseInterface
{
public function connect();
public function query(string $query, array $params = []);
public function close();
}