This commit is contained in:
2021-10-13 22:46:19 -03:00
parent edc39bd0fe
commit 68122d1431
2 changed files with 44 additions and 0 deletions

8
common/Define/Engine.php Normal file
View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Common\Define;
interface Engine {
public function __construct(string $host, string $name, ?int $port = null);
public function dsn(): string;
public function hasLogin(): bool;
}