for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pulsar\Relation;
use Pulsar\Model;
class Pivot extends Model
{
/**
* @var string
*/
protected $_tablename;
public function setTablename($tablename)
$this->_tablename = $tablename;
}
public function getTablename()
return $this->_tablename;