選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
201B

  1. <?php
  2. namespace Framework\Support;
  3. use Closure;
  4. interface DriverFactory
  5. {
  6. public function addDriver(string $alias, Closure $driver): static;
  7. public function connect(array $config): mixed;
  8. }

Powered by TurnKey Linux.