/home/techb158/immovalet.com/vendor/doctrine/dbal/src/Event
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Event/SchemaDropTableEventArgs.php (1268B)
table = $table;
$this->platform = $platform;
}
/**
* @return string|Table
*/
public function getTable()
{
return $this->table;
}
/**
* @return AbstractPlatform
*/
public function getPlatform()
{
return $this->platform;
}
/**
* @param string $sql
*
* @return SchemaDropTableEventArgs
*/
public function setSql($sql)
{
$this->sql = $sql;
return $this;
}
/**
* @return string|null
*/
public function getSql()
{
return $this->sql;
}
}