for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Silk\Configuration;
/**
* Class ClassConfiguration
* @author Lucas A. de Araújo <[email protected]>
* @package Silk\Configuration
*/
class ClassConfiguration
{
* @var string
private $table;
private $primaryKey;
* @return string
public function getTable()
return $this->table;
}
* @param string $table
public function setTable($table)
$this->table = $table;
public function getPrimaryKey()
return $this->primaryKey;
* @param string $primaryKey
public function setPrimaryKey($primaryKey)
$this->primaryKey = $primaryKey;