Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-kuendig committed Jul 15, 2024
2 parents e951210 + 0bf6187 commit ef6be36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions updates/seeders/tables/CustomerTableSeeder.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace OFFLINE\Mall\Updates\Seeders\Tables;

Expand Down Expand Up @@ -60,8 +62,8 @@ protected function createUser(string $email, string $name, ?int $customerGroupId
], [
'password' => '12345678',
'password_confirmation' => '12345678',
'first_name' => $firstname,
'last_name' => $lastname,
'name' => $firstname,
'surname' => $lastname,
]);
$user->offline_mall_customer_group_id = $customerGroupId;
$user->save();
Expand Down
2 changes: 2 additions & 0 deletions updates/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -588,3 +588,5 @@ v3.4.0:
- 031_01-create_unique_property_values_table.php
v3.4.1:
- 'Prevent from adding too many queue jobs for UniquePropertyValue'
v3.4.2:
- 'Fixed demo seeder with new users plugin'

0 comments on commit ef6be36

Please sign in to comment.