Skip to content

Commit

Permalink
dont show milliseconds with decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
SjorsO committed Nov 15, 2023
1 parent 350e605 commit 7712d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Seeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function call($class, $silent = false, array $parameters = [])
$seeder->__invoke($parameters);

if ($silent === false && isset($this->command)) {
$runTime = number_format((microtime(true) - $startTime) * 1000, 2);
$runTime = number_format((microtime(true) - $startTime) * 1000);

with(new TwoColumnDetail($this->command->getOutput()))->render(
$name,
Expand Down

0 comments on commit 7712d03

Please sign in to comment.