LaLiga-BackEnd/vendor/symfony/stopwatch
Daniel Guzman 9f30bc98c7 welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
..
CHANGELOG.md welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
LICENSE welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
README.md welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
Section.php welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
Stopwatch.php welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
StopwatchEvent.php welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
StopwatchPeriod.php welcome back to dyb-tech 2024-05-18 02:28:01 +02:00
composer.json welcome back to dyb-tech 2024-05-18 02:28:01 +02: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