<?php

namespace Model\Constant;

use Core\Db;

class Constant
{
    protected static string $tableName = '';
    protected array $rows = [];

    public function __construct()
    {
        $this->rows = Db::getRows('select * from ' . self::$tableName);
    }


}