Skip to content

Commit

Permalink
[EngCom] Public Pull Requests - 2.3-develop
Browse files Browse the repository at this point in the history
 - merged latest code from mainline branch
  • Loading branch information
magento-engcom-team authored Jun 4, 2018
2 parents da8b1c2 + 66abad2 commit 3409fba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ public function isApplicable(string $statement) : bool ;
* @param ElementHistory $elementHistory
* @return callable
*/
public function getCallback(ElementHistory $elementHistory) : Callable;
public function getCallback(ElementHistory $elementHistory) : callable;
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function isApplicable(string $statement) : bool
/**
* @inheritdoc
*/
public function getCallback(ElementHistory $elementHistory) : Callable
public function getCallback(ElementHistory $elementHistory) : callable
{
/** @var Table $newTable */
$newTable = $elementHistory->getNew();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function isApplicable(string $statement) : bool
/**
* @inheritdoc
*/
public function getCallback(ElementHistory $columnHistory) : Callable
public function getCallback(ElementHistory $columnHistory) : callable
{
/** @var Column $column */
$column = $columnHistory->getNew();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function isApplicable(string $statement) : bool
/**
* @inheritdoc
*/
public function getCallback(ElementHistory $tableHistory) : Callable
public function getCallback(ElementHistory $tableHistory) : callable
{
/** @var Table $table */
$table = $tableHistory->getNew();
Expand Down

0 comments on commit 3409fba

Please sign in to comment.