Files
xstore/inc/Hura8/Database/MysqlValue.php
2025-10-04 11:46:59 +07:00

17 lines
233 B
PHP

<?php
namespace Hura8\Database;
class MysqlValue
{
protected $value;
public function __construct($value = null) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}