Update core 8.3.0
This commit is contained in:
parent
da7a7918f8
commit
cd7a898e66
6144 changed files with 132297 additions and 87747 deletions
|
@ -15,21 +15,21 @@ class Row {
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $source = array();
|
||||
protected $source = [];
|
||||
|
||||
/**
|
||||
* The source identifiers.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $sourceIds = array();
|
||||
protected $sourceIds = [];
|
||||
|
||||
/**
|
||||
* The destination values.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $destination = array();
|
||||
protected $destination = [];
|
||||
|
||||
/**
|
||||
* Level separator of destination and source properties.
|
||||
|
@ -41,11 +41,11 @@ class Row {
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $idMap = array(
|
||||
protected $idMap = [
|
||||
'original_hash' => '',
|
||||
'hash' => '',
|
||||
'source_row_status' => MigrateIdMapInterface::STATUS_NEEDS_UPDATE,
|
||||
);
|
||||
];
|
||||
|
||||
/**
|
||||
* Whether the source has been frozen already.
|
||||
|
|
Reference in a new issue