Core and composer updates
This commit is contained in:
parent
a82634bb98
commit
62cac30480
1118 changed files with 21770 additions and 6306 deletions
|
@ -106,10 +106,11 @@ class Row {
|
|||
* Retrieves the values of the source identifiers.
|
||||
*
|
||||
* @return array
|
||||
* An array containing the values of the source identifiers.
|
||||
* An array containing the values of the source identifiers. Returns values
|
||||
* in the same order as defined in $this->sourceIds.
|
||||
*/
|
||||
public function getSourceIdValues() {
|
||||
return array_intersect_key($this->source, $this->sourceIds);
|
||||
return array_merge($this->sourceIds, array_intersect_key($this->source, $this->sourceIds));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Reference in a new issue