<?php namespace App\Entity; class User { protected static $tablename = "user"; use \libs\DataContain; use \libs\DataStorage; public function __construct() { $this -> set_fields([ "name", "passhash", "create_at" ]); } }