Query.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Infrastructure\DB\MySQLi; |
| 4 | |
| 5 | /** |
| 6 | * Class Query |
| 7 | * |
| 8 | * @package AmeliaBooking\Infrastructure\DB\MySQLi |
| 9 | */ |
| 10 | class Query |
| 11 | { |
| 12 | private $value; |
| 13 | |
| 14 | /** |
| 15 | * @param string $value |
| 16 | */ |
| 17 | public function setValue($value) |
| 18 | { |
| 19 | $this->value = $value; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * |
| 24 | * @return mixed |
| 25 | */ |
| 26 | public function getValue() |
| 27 | { |
| 28 | return $this->value; |
| 29 | } |
| 30 | } |
| 31 |