function()
{
if (!isset($this->_get)) {
$this->_get = [];
if (\count($_GET) > 0) {
$this->_get = array_map(
function ($a) {
return bbn\Str::correctTypes($a);
}, $_GET
);
}
}
return $this->_get;
}