| @@ -7,9 +7,9 @@ | ||
| 7 | 7 | * |
| 8 | 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | 9 | * file that was distributed with this source code. |
| 10 | 10 | */ |
| 11 | -namespace WindPressPackages\Symfony\Component\Stopwatch; | |
| 11 | +namespace WindPressDeps\Symfony\Component\Stopwatch; | |
| 12 | 12 | |
| 13 | 13 | /** |
| 14 | 14 | * Stopwatch section. |
| 15 | 15 | * |
| @@ -98,9 +98,9 @@ | ||
| 98 | 98 | */ |
| 99 | 99 | public function startEvent(string $name, ?string $category) |
| 100 | 100 | { |
| 101 | 101 | if (!isset($this->events[$name])) { |
| 102 | - $this->events[$name] = new StopwatchEvent($this->origin ?: (microtime(\true) * 1000), $category, $this->morePrecision, $name); | |
| 102 | + $this->events[$name] = new StopwatchEvent($this->origin ?: microtime(\true) * 1000, $category, $this->morePrecision, $name); | |
| 103 | 103 | } |
| 104 | 104 | return $this->events[$name]->start(); |
| 105 | 105 | } |
| 106 | 106 | /** |