oont-contents/plugins/woocommerce-square/vendor/apimatic/jsonmapper/tests/JsonMapperTest/ValueObject.php
2025-02-08 15:10:23 +01:00

17 lines
224 B
PHP

<?php
class JsonMapperTest_ValueObject
{
protected $value;
public function __construct($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
}