mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-08-04 03:40:45 +08:00
28 lines
528 B
PHP
28 lines
528 B
PHP
<?php
|
|
|
|
/**
|
|
* The renderer interface.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\AdminNotices\Renderer
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\AdminNotices\Renderer;
|
|
|
|
/**
|
|
* Interface RendererInterface
|
|
*/
|
|
interface RendererInterface
|
|
{
|
|
/**
|
|
* Renders the messages.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function render(): bool;
|
|
/**
|
|
* Enqueues common assets required for the admin notice behavior.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function enqueue_admin(): void;
|
|
}
|