Current File : /home/digitaw/www/wp-content/plugins/webp-converter-for-media/src/Error/Notice/NoticeInterface.php
<?php

namespace WebpConverter\Error\Notice;

/**
 * Stores information about server configuration error.
 */
interface NoticeInterface {

	/**
	 * @return string
	 */
	public function get_key(): string;

	/**
	 * @return string[]
	 */
	public function get_message(): array;
}