03-database_item_interface.php 186 B

123456789
  1. <?php
  2. namespace cx_newsletter;
  3. interface database_item_interface {
  4. public function has_id() : bool;
  5. public function get_id() : int;
  6. public function is_complete() : bool;
  7. }