File: //home/globfdxw/www/wp-content/plugins/give/src/Framework/Receipts/Properties/ReceiptDetail.php
<?php
namespace Give\Framework\Receipts\Properties;
use Give\Framework\Support\Contracts\Arrayable;
class ReceiptDetail implements Arrayable
{
/**
* @var string
*/
public $label;
/**
* @var mixed
*/
public $value;
/**
* @since 3.0.0
*
* @param string $label
* @param mixed $value
*/
public function __construct(string $label, $value) {
$this->label = $label;
$this->value = $value;
}
/**
* @since 3.0.0
*/
public function toArray(): array
{
return [
'label' => $this->label,
'value' => $this->value,
];
}
}