ServiceProviderInterface.php 289 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Pay\Contract;
  4. use Yansongda\Pay\Exception\ContainerException;
  5. interface ServiceProviderInterface
  6. {
  7. /**
  8. * @param mixed $data
  9. *
  10. * @throws ContainerException
  11. */
  12. public function register($data = null): void;
  13. }