Skip to content

Commit

Permalink
🔃 [EngCom] Public Pull Requests - 2.2-develop
Browse files Browse the repository at this point in the history
Accepted Public Pull Requests:
 - #13324: Alignement Array assignement (by @Nolwennig)
  • Loading branch information
magento-team authored Jan 24, 2018
2 parents 25e3157 + b6ed803 commit 5e4bb2b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/code/Magento/Store/Setup/InstallSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,13 @@ public function install(SchemaSetupInterface $setup, ModuleContextInterface $con
*/
$connection->insertForce(
$installer->getTable('store_group'),
['group_id' => 0, 'website_id' => 0, 'name' => 'Default', 'root_category_id' => 0, 'default_store_id' => 0]
[
'group_id' => 0,
'website_id' => 0,
'name' => 'Default',
'root_category_id' => 0,
'default_store_id' => 0
]
);
$connection->insertForce(
$installer->getTable('store_group'),
Expand Down

0 comments on commit 5e4bb2b

Please sign in to comment.