PluginProbe
WindPress – Tailwind CSS integration for WordPress / 3.2.90
WindPress – Tailwind CSS integration for WordPress v3.2.90
3.2.90 3.2.89 3.2.88 3.2.87 3.2.86 3.2.85 3.2.84 3.2.83 3.2.82 3.2.81 trunk 3.0.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.13 3.0.14 3.0.15 3.0.16 3.0.17 3.0.2 3.0.3 3.0.4 3.0.5 All 144 releases
← All changes | vendor/symfony/stopwatch/Section.php +2 -2 3.0.23.2.90 View file →
@@ -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 /**