for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_mapper\Mappers\Database;
/**
* Trait TTable
* @package kalanis\kw_mapper\Mappers\Database
*/
trait TTable
{
protected string $tableName = '';
public function setTable(string $tableName): void
$this->tableName = $tableName;
}
public function getTable(): string
return $this->tableName;