first commit

This commit is contained in:
2023-09-08 01:45:46 -07:00
commit 8cbf53172b
108 changed files with 29005 additions and 0 deletions

18
inc/core/Serviceable.php Normal file
View File

@ -0,0 +1,18 @@
<?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();
}