<?php
namespace SearchRegex\Sql;
/**
* Sql grouping
*/
class Group {
/**
* Group name
*
* @readonly
*/
private string $group;
public function __construct( Value $group ) {
$this->group = $group->get_value();
}
/**
* Get the group name
*
* @return string
*/
public function get_as_sql() {
return $this->group;
}
}