SMAMUGAPAY/vendor/symfony/stopwatch
ericko-cyber 59b63e23aa Initial commit 2025-06-15 19:56:10 +07:00
..
CHANGELOG.md Initial commit 2025-06-15 19:56:10 +07:00
LICENSE Initial commit 2025-06-15 19:56:10 +07:00
README.md Initial commit 2025-06-15 19:56:10 +07:00
Section.php Initial commit 2025-06-15 19:56:10 +07:00
Stopwatch.php Initial commit 2025-06-15 19:56:10 +07:00
StopwatchEvent.php Initial commit 2025-06-15 19:56:10 +07:00
StopwatchPeriod.php Initial commit 2025-06-15 19:56:10 +07:00
composer.json Initial commit 2025-06-15 19:56:10 +07:00

README.md

Stopwatch Component

The Stopwatch component provides a way to profile code.

Getting Started

composer require symfony/stopwatch
use Symfony\Component\Stopwatch\Stopwatch;

$stopwatch = new Stopwatch();

// optionally group events into sections (e.g. phases of the execution)
$stopwatch->openSection();

// starts event named 'eventName'
$stopwatch->start('eventName');

// ... run your code here

// optionally, start a new "lap" time
$stopwatch->lap('foo');

// ... run your code here

$event = $stopwatch->stop('eventName');

$stopwatch->stopSection('phase_1');

Resources