Skip to content

Commit

Permalink
Improved code
Browse files Browse the repository at this point in the history
  • Loading branch information
kreaweb.be committed Sep 4, 2024
1 parent ceba8ef commit 2751e70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion database/seeders/CustomersSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected function withProgressBar(int $amount, Closure $createCollectionOfOne):

$progressBar->start();

$items = new Collection();
$items = new Collection;

foreach (range(1, $amount) as $i) {
$items = $items->merge(
Expand Down
2 changes: 1 addition & 1 deletion database/seeders/UserlogsSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected function withProgressBar(int $amount, Closure $createCollectionOfOne):

$progressBar->start();

$items = new Collection();
$items = new Collection;

foreach (range(1, $amount) as $i) {
$items = $items->merge(
Expand Down
2 changes: 1 addition & 1 deletion database/seeders/UsersSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected function withProgressBar(int $amount, Closure $createCollectionOfOne):

$progressBar->start();

$items = new Collection();
$items = new Collection;

foreach (range(1, $amount) as $i) {
$items = $items->merge(
Expand Down

0 comments on commit 2751e70

Please sign in to comment.