8 lines
211 B
PHP
8 lines
211 B
PHP
<?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;
|
|
} |