<?php namespace cx_newsletter; interface database_item_interface { public function has_id() : bool; public function get_id() : int; public function is_complete() : bool; }