first commit
This commit is contained in:
18
inc/core/Serviceable.php
Normal file
18
inc/core/Serviceable.php
Normal 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();
|
||||
}
|
Reference in New Issue
Block a user