ServiceProviderInterface.php 268 B

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