Skip to content

Commit 6e3fdcc

Browse files
committed
MAGETWO-88409: Builds stabilization for PR
- tests fix
1 parent 99853f7 commit 6e3fdcc

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,11 @@ private function resolveInternalRelations(array $columns, array $data)
178178
trigger_error(
179179
new Phrase(
180180
'Column %1 does not exist for index/constraint %2 in table %3.',
181-
$columnName,
182-
$data['name'],
183-
$tableName
181+
[
182+
$columnName,
183+
$data['name'],
184+
$tableName
185+
]
184186
),
185187
E_USER_WARNING
186188
);

lib/internal/Magento/Framework/Setup/Patch/PatchApplier.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,11 @@ public function applySchemaPatch($moduleName = null)
231231
throw new Exception(
232232
new Phrase(
233233
'Unable to apply patch %1 for module %2. Original exception message: %3',
234-
get_class($schemaPatch),
235-
$moduleName,
236-
$e->getMessage()
234+
[
235+
get_class($schemaPatch),
236+
$moduleName,
237+
$e->getMessage()
238+
]
237239
)
238240
);
239241
} finally {

0 commit comments

Comments
 (0)