12-rest_register_interface.php 231 B

123456789
  1. <?php
  2. namespace cx_newsletter;
  3. interface rest_register_interface {
  4. public function __construct(string $namespace);
  5. public function get_namespace() : string;
  6. public function register(rest_endpoint $endpoint) : self;
  7. }