* @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ namespace phpOMS\DataStorage\Database\Query; /** * Database query builder. * * @category Framework * @package phpOMS\DataStorage\Database * @author OMS Development Team * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 */ class Column { private $column = ''; /** * Constructor. * * @param \string $column Column * * @since 1.0.0 * @author Dennis Eichhorn */ public function __construct(\string $column) { $this->column = $column; } public function getColumn() : \string { return $this->column; } public function setColumn(\string $column) { $this->column = $column; } }