File "DescriptionAwareInterface.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/vendor/dhii/human-readable-interface/src/DescriptionAwareInterface.php
File size: 476 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Dhii\Util\String;
use Stringable;
/**
* Something that is aware of a description.
*/
interface DescriptionAwareInterface
{
/**
* Retrieves the description related to this instance.
*
* A description is a human readable string that provides verbose explanation, additional information,
* instructions, and/or context.
*
* @return string|Stringable
*/
public function getDescription();
}