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 Order
{
protected string $tableName = '';
/** @var string|int */
protected $columnName = '';
protected string $direction = '';
/**
* @param string $tableName
* @param string|int $columnName
* @param string $direction
* @return $this
*/
public function setData(string $tableName, $columnName, string $direction = ''): self
$this->tableName = $tableName;
$this->columnName = $columnName;
$this->direction = $direction;
return $this;
}
public function getTableName(): string
return $this->tableName;
* @return string|int
public function getColumnName()
return $this->columnName;
public function getDirection(): string
return $this->direction;