for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Phuria\SQLBuilder\Table;
/**
* @author Beniamin Jonatan Šimko <[email protected]>
*/
class UnknownTable extends AbstractTable
{
* @var string $tableName
private $tableName;
* @inheritdoc
public function getTableName()
return $this->tableName;
}
* @param string $tableName
*
* @return $this
public function setTableName($tableName)
$this->tableName = $tableName;
return $this;