PluginInterface.php 207 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Pay\Contract;
  4. use Closure;
  5. use Yansongda\Pay\Rocket;
  6. interface PluginInterface
  7. {
  8. public function assembly(Rocket $rocket, Closure $next): Rocket;
  9. }