PHP code example of netpromotion / tracy-wrapper
1. Go to this page and download the library: Download netpromotion/tracy-wrapper library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
netpromotion / tracy-wrapper example snippets
// index.php
$panels = [new BarPanelA(), new BarPanelB()];
// or
$panels = function () { // will be called only if Tracy detects development mode
return [new BarPanelA(), new BarPanelB()];
};
tracy_wrap(function() {
app()->run();
}, $panels /* optional */);