updated-packages
This commit is contained in:
@@ -18,15 +18,19 @@ class ColumnDiff
|
||||
/** @var string[] */
|
||||
public $changedProperties = [];
|
||||
|
||||
/** @var Column */
|
||||
/** @var Column|null */
|
||||
public $fromColumn;
|
||||
|
||||
/**
|
||||
* @param string $oldColumnName
|
||||
* @param string[] $changedProperties
|
||||
*/
|
||||
public function __construct($oldColumnName, Column $column, array $changedProperties = [], ?Column $fromColumn = null)
|
||||
{
|
||||
public function __construct(
|
||||
$oldColumnName,
|
||||
Column $column,
|
||||
array $changedProperties = [],
|
||||
?Column $fromColumn = null
|
||||
) {
|
||||
$this->oldColumnName = $oldColumnName;
|
||||
$this->column = $column;
|
||||
$this->changedProperties = $changedProperties;
|
||||
|
Reference in New Issue
Block a user