/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Framework/FieldsAPI
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Framework/FieldsAPI/Option.php (995B)
value = $value;
$this->label = $label;
}
/**
* Create a new option.
*
* @since 2.12.0
*
* @return static
*/
public static function make(...$args)
{
return new static(...$args);
}
/**
* Access the value
*
* @since 2.12.0
*
* @return string
*/
public function getValue()
{
return $this->value;
}
/**
* {@inheritdoc}
*/
public function jsonSerialize()
{
return [
'value' => $this->getValue(),
'label' => $this->getLabel(),
];
}
}