ShortcutInterface.php 212 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Pay\Contract;
  4. interface ShortcutInterface
  5. {
  6. /**
  7. * @return PluginInterface[]|string[]
  8. */
  9. public function getPlugins(array $params): array;
  10. }