/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Table
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Table/Table.php (1517B)
name = $name;
$this->options = $options;
}
/**
* Sets the table name.
*
* @param string $name The name of the table
*
* @return $this
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Gets the table name.
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Gets the table options
*
* @return array
*/
public function getOptions()
{
return $this->options;
}
/**
* Sets the table options
*
* @param array $options The options for the table creation
*
* @return void
*/
public function setOptions(array $options)
{
$this->options = $options;
}
}