for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_mapper\Storage\Shared\QueryBuilder;
class Property
{
protected string $tableName = '';
/** @var string|int */
protected $columnName = '';
protected string $columnKey = '';
/**
* @param string $tableName
* @param string|int $columnName
* @param string $columnKey
* @return $this
*/
public function setData(string $tableName, $columnName, string $columnKey): self
$this->tableName = $tableName;
$this->columnName = $columnName;
$this->columnKey = $columnKey;
return $this;
}
public function getTableName(): string
return $this->tableName;
* @return string|int
public function getColumnName()
return $this->columnName;
public function getColumnKey(): string
return $this->columnKey;