21 lines
281 B
PHP
21 lines
281 B
PHP
<?php
|
|
|
|
namespace AutomateWoo\AdminNotices;
|
|
|
|
/**
|
|
* Interface AdminNoticeInterface
|
|
*
|
|
* @since 5.1.3
|
|
*/
|
|
interface AdminNoticeInterface {
|
|
|
|
/**
|
|
* Init the notice, add hooks.
|
|
*/
|
|
public function init();
|
|
|
|
/**
|
|
* Output/render the notice HTML.
|
|
*/
|
|
public function output();
|
|
}
|