InitializableInterface.php 257 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace Laminas\Stdlib;
  4. /**
  5. * Interface to allow objects to have initialization logic
  6. */
  7. interface InitializableInterface
  8. {
  9. /**
  10. * Init an object
  11. *
  12. * @return void
  13. */
  14. public function init();
  15. }