File "RepositoryInterface.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-admin-notices/src/Repository/RepositoryInterface.php
File size: 450 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* The repository interface.
*
* @package WooCommerce\PayPalCommerce\AdminNotices\Repository
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\AdminNotices\Repository;
use WooCommerce\PayPalCommerce\AdminNotices\Entity\Message;
/**
* Interface RepositoryInterface
*/
interface RepositoryInterface {
/**
* Returns the current messages.
*
* @return Message[]
*/
public function current_message(): array;
}