This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
cookthebooks-legacy/inc/core/Serviceable.php

19 lines
289 B
PHP

<?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase
/**
* Service interface contract.
*
* @package PressBook
*/
namespace PressBook;
/**
* Interface for service instance.
*/
interface Serviceable {
/**
* Register a service.
*/
public function register();
}