Merge pull request #3921 from alchemy-fr/PHRAS-3555-change-to-base_id

PHRAS-3555 merge rename collection_id to base_id
This commit is contained in:
Nicolas Maillat
2021-12-07 10:01:41 +01:00
committed by GitHub

View File

@@ -25,12 +25,12 @@ class CollectionChangedEvent extends RecordEvent
$this->beforeCollection = [
'collection_name' => $beforeCol->get_name(),
'collection_id' => $beforeCol->get_base_id()
'base_id' => $beforeCol->get_base_id()
];
$this->afterCollection = [
'collection_name' => $afterCol->get_name(),
'collection_id' => $afterCol->get_base_id()
'base_id' => $afterCol->get_base_id()
];
}