Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 66abad2

Browse files
authored
Merge pull request #2638 from magento-earl-grey/MAGETWO-91958
[earl] MAGETWO-91958: EE install fails on 7.2.5 with fatal error
2 parents 943e2cd + d9548f8 commit 66abad2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/internal/Magento/Framework/Setup/Declaration/Schema/Db/DDLTriggerInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ public function isApplicable(string $statement) : bool ;
4242
* @param ElementHistory $elementHistory
4343
* @return callable
4444
*/
45-
public function getCallback(ElementHistory $elementHistory) : Callable;
45+
public function getCallback(ElementHistory $elementHistory) : callable;
4646
}

lib/internal/Magento/Framework/Setup/Declaration/Schema/Db/MySQL/DDL/Triggers/MigrateDataBetweenShards.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function isApplicable(string $statement) : bool
6262
/**
6363
* @inheritdoc
6464
*/
65-
public function getCallback(ElementHistory $elementHistory) : Callable
65+
public function getCallback(ElementHistory $elementHistory) : callable
6666
{
6767
/** @var Table $newTable */
6868
$newTable = $elementHistory->getNew();

lib/internal/Magento/Framework/Setup/Declaration/Schema/Db/MySQL/DDL/Triggers/MigrateDataFrom.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function isApplicable(string $statement) : bool
5050
/**
5151
* @inheritdoc
5252
*/
53-
public function getCallback(ElementHistory $columnHistory) : Callable
53+
public function getCallback(ElementHistory $columnHistory) : callable
5454
{
5555
/** @var Column $column */
5656
$column = $columnHistory->getNew();

lib/internal/Magento/Framework/Setup/Declaration/Schema/Db/MySQL/DDL/Triggers/MigrateDataFromAnotherTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function isApplicable(string $statement) : bool
4949
/**
5050
* @inheritdoc
5151
*/
52-
public function getCallback(ElementHistory $tableHistory) : Callable
52+
public function getCallback(ElementHistory $tableHistory) : callable
5353
{
5454
/** @var Table $table */
5555
$table = $tableHistory->getNew();

0 commit comments

Comments
 (0)