update
This commit is contained in:
16
inc/Hura8/Database/MysqlValue.php
Normal file
16
inc/Hura8/Database/MysqlValue.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Hura8\Database;
|
||||
|
||||
class MysqlValue
|
||||
{
|
||||
protected $value;
|
||||
|
||||
public function __construct($value = null) {
|
||||
$this->value = $value;
|
||||
}
|
||||
|
||||
public function getValue() {
|
||||
return $this->value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user