, 349 min read

Profiling PHP Programs

Profiling a program is the process to measure how much CPU time a function uses, and also to count how many times this function was called.

One very powerful profiler for PHP, XHProf, was initially developed by Facebook engineers. Facebook formerly used PHP very intensively.

1. Installation

Installing XHProf is quite straightforward:

  1. cd extension
  2. phpize
  3. configure
  4. make
  5. Copy .so-file to PHP libraries (/usr/lib/php/modules/)
  6. Change php.ini
  7. Copy JavaScript libraries (/usr/share/webapps/xhprof/)

See Package Details: php-xhprof.

Installation on Arch Linux is easy as there is an AUR package php-xhprof. If the PHP version changes you have to uninstall via pacman -R, then reinstall with your AUR helper. One particular good AUR helper is trizen.

2. Commenting on results

Below two section show the HTML output of XHProf when running Saaze. The original output contains lots of links, which can be clicked. I have removed them.

In below two paragraphs one can clearly see that the modified version uses way fewer function calls and also way way fewer CPU time. So replacing Parsedown Extra with MD4C and replacing the Yaml parser with the PECL provided, proved to be very beneficial. Also rearranging work, doing work in the program, when it is actually required, reduces the number of function calls dramatically, see e.g., content() and getContent().

3. Configuration

To actually profile a PHP program you have to change it, i.e., you have to start and stop the XHProf profiler. To start it, you use:

xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);

To stop the profiler you have to use something like this:

function stopXhprof() {
    $xhprof_data = xhprof_disable();

    //
    // Saving the XHProf run
    // using the default implementation of iXHProfRuns.
    //
    include_once "/usr/share/webapps/xhprof/xhprof_lib/utils/xhprof_lib.php";
    include_once "/usr/share/webapps/xhprof/xhprof_lib/utils/xhprof_runs.php";

    $xhprof_runs = new \XHProfRuns_Default();

    // Save the run under a namespace "xhprof_foo".
    //
    // **NOTE**:
    // By default save_run() will automatically generate a unique
    // run id for you. [You can override that behavior by passing
    // a run id (optional arg) to the save_run() method instead.]
    //
    $run_id = $xhprof_runs->save_run($xhprof_data, "saaze");

    echo "---------------\n".
        "Assuming you have set up the http based UI for \n".
        "XHProf at some address, you can view run at \n".
        "http://<xhprof-ui-address>/index.php?run=$run_id&source=saaze\n".
        "---------------\n";
    }

3. Simplified Saaze

Running "Simplified Saaze" takes

$ time php saaze build 
Building static site in /home/klm/tmp/sndsaaze/build...
        execute(): filePath=/home/klm/tmp/sndsaaze/content/blog.yml, nentries=328, totalPages=11, entries_per_page=30
        execute(): filePath=/home/klm/tmp/sndsaaze/content/music.yml, nentries=11, totalPages=1, entries_per_page=30
        execute(): filePath=/home/klm/tmp/sndsaaze/content/pages.yml, nentries=2, totalPages=1, entries_per_page=30
Finished creating 3 collections and 341 entries (0.30 secs / 12.17MB)
#collections=3, YamlParser=0.0128/344-3, md2html=0.0129, MathParser=0.0061/341, toObject=0.0705/714, renderEntry=341, content=682/341, excerpt=341/0
        real 0.36s
        user 0.27s
        sys 0
        swapped 0
        total space 0

Running "Simplified Saaze" under XHProf needs ~1s, i.e., three-times more.

Below is the abridged output of XHProf for "Simplified Saaze". All links have been dropped. In normal XHProf output you could click on any of the below functions and drill down or up.

Run Report
Run #616c6ba3b0877: XHProf Run (Namespace=saaze)

Overall Summary
Total Incl. Wall Time (microsec):950,667 microsecs
Total Incl. CPU (microsecs):941,893 microsecs
Total Incl. MemUse (bytes):7,037,480 bytes
Total Incl. PeakMemUse (bytes):11,155,960 bytes
Number of Function Calls:291,242

Sorted by Incl. Wall Time (microsec)


Function NameCallsCalls%Incl. Wall Time
(microsec)
IWall%Excl. Wall Time
(microsec)
EWall%Incl. CPU
(microsecs)
ICpu%Excl. CPU
(microsec)
ECPU%Incl.
MemUse
(bytes)
IMemUse%Excl.
MemUse
(bytes)
EMemUse%Incl.
PeakMemUse
(bytes)
IPeakMemUse%Excl.
PeakMemUse
(bytes)
EPeakMemUse%
main() 1 0.0% 950,667 100.0% 2,000 0.2% 941,893 100.0% 1,671 0.2% 7,037,480 100.0% -4,376,808 -62.2% 11,155,960 100.0% 56 0.0%
Saaze\BuildCommand::buildEntry 341 0.1% 680,565 71.6% 6,809 0.7% 674,717 71.6% 5,411 0.6% 4,982,608 70.8% -2,808,600 -39.9% 2,150,144 19.3% 0 0.0%
Saaze\TemplateManager::render 357 0.1% 642,288 67.6% 2,348 0.2% 636,502 67.6% 2,107 0.2% 9,651,648 137.1% 50,424 0.7% 2,248,504 20.2% 0 0.0%
Saaze\TemplateManager::renderEntry 341 0.1% 634,506 66.7% 4,154 0.4% 629,049 66.8% 3,537 0.4% 7,689,392 109.3% -4,628,024 -65.8% 2,150,144 19.3% 0 0.0%
Jenssegers\Blade\Blade::render 357 0.1% 353,641 37.2% 1,610 0.2% 350,347 37.2% 1,456 0.2% 3,922,624 55.7% -56,424 -0.8% 2,238,096 20.1% 0 0.0%
Jenssegers\Blade\Blade::__construct 357 0.1% 284,532 29.9% 3,728 0.4% 282,212 30.0% 3,153 0.3% 5,661,632 80.4% 233,016 3.3% 10,408 0.1% 0 0.0%
Illuminate\View\View::render 357 0.1% 279,927 29.4% 1,799 0.2% 277,393 29.5% 1,586 0.2% 3,306,784 47.0% 760 0.0% 2,238,096 20.1% 0 0.0%
Illuminate\View\View::renderContents 357 0.1% 273,861 28.8% 2,527 0.3% 271,428 28.8% 2,098 0.2% 5,752,464 81.7% 824 0.0% 2,238,096 20.1% 0 0.0%
Illuminate\View\View::getContents 357 0.1% 259,843 27.3% 1,597 0.2% 257,546 27.3% 1,353 0.1% 5,731,472 81.4% -133,520 -1.9% 2,238,096 20.1% 0 0.0%
Illuminate\View\Engines\CompilerEngine::get 357 0.1% 256,008 26.9% 2,637 0.3% 253,825 26.9% 2,250 0.2% 5,728,944 81.4% 55,104 0.8% 2,238,096 20.1% 0 0.0%
Illuminate\View\Engines\PhpEngine::evaluatePath 357 0.1% 241,397 25.4% 2,922 0.3% 239,303 25.4% 2,351 0.2% 5,574,584 79.2% -2,945,640 -41.9% 2,238,096 20.1% 0 0.0%
Illuminate\Container\Container::resolve 1,428 0.5% 240,809 25.3% 17,845 1.9% 239,322 25.4% 14,113 1.5% 3,056,792 43.4% 136,104 1.9% 10,408 0.1% 0 0.0%
Illuminate\Filesystem\Filesystem::getRequire 357 0.1% 236,356 24.9% 1,790 0.2% 234,362 24.9% 1,663 0.2% 3,350,736 47.6% -10,696 -0.2% 2,238,096 20.1% 0 0.0%
Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure} 357 0.1% 233,381 24.5% 19,007 2.0% 231,435 24.6% 15,518 1.6% 3,360,232 47.7% -5,635,536 -80.1% 2,238,096 20.1% 0 0.0%
Illuminate\Container\Container::get 714 0.2% 229,098 24.1% 1,645 0.2% 227,392 24.1% 1,645 0.2% 3,056,856 43.4% 648 0.0% 10,408 0.1% 0 0.0%
Illuminate\View\ViewServiceProvider::Illuminate\View\{closure} 1,071 0.4% 201,230 21.2% 9,769 1.0% 199,948 21.2% 8,350 0.9% 2,911,432 41.4% 32,920 0.5% 10,408 0.1% 0 0.0%
Illuminate\Container\Container::build 714 0.2% 187,403 19.7% 2,912 0.3% 186,011 19.7% 2,646 0.3% 2,872,600 40.8% 712 0.0% 10,408 0.1% 0 0.0%
Illuminate\Container\Container::offsetGet 2,499 0.9% 174,939 18.4% 5,671 0.6% 174,426 18.5% 5,660 0.6% 1,604,688 22.8% 696 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::make 2,499 0.9% 169,268 17.8% 5,903 0.6% 168,766 17.9% 5,760 0.6% 1,603,992 22.8% 712 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::resolve@1 1,785 0.6% 150,009 15.8% 24,501 2.6% 149,431 15.9% 19,052 2.0% 1,602,696 22.8% 249,760 3.5% 0 0.0% 0 0.0%
Saaze\EntryManager::getEntries 3 0.0% 134,436 14.1% 23 0.0% 133,021 14.1% 19 0.0% 4,600,800 65.4% 472 0.0% 5,563,600 49.9% 0 0.0%
Saaze\EntryManager::loadEntries 3 0.0% 127,560 13.4% 19 0.0% 126,252 13.4% 19 0.0% 4,625,456 65.7% 648 0.0% 5,563,600 49.9% 0 0.0%
Saaze\EntryManager::loadMkdwnRecursive 3 0.0% 127,528 13.4% 81 0.0% 126,219 13.4% 68 0.0% 4,624,304 65.7% -952 -0.0% 5,563,600 49.9% 0 0.0%
Saaze\EntryManager::loadMkdwnRecursive@1 12 0.0% 126,494 13.3% 1,744 0.2% 125,211 13.3% 1,342 0.1% 4,600,944 65.4% -19,400 -0.3% 5,563,600 49.9% 0 0.0%
Saaze\EntryManager::loadEntry 341 0.1% 123,081 12.9% 3,568 0.4% 121,976 13.0% 3,082 0.3% 4,576,848 65.0% -83,416 -1.2% 5,563,600 49.9% 0 0.0%
Illuminate\View\Factory::make 714 0.2% 118,921 12.5% 7,330 0.8% 118,084 12.5% 6,072 0.6% 775,048 11.0% 1,552 0.0% 0 0.0% 0 0.0%
Illuminate\View\View::render@1 357 0.1% 106,911 11.2% 2,178 0.2% 106,276 11.3% 1,836 0.2% 3,022,040 42.9% 792 0.0% 2,231,064 20.0% 0 0.0%
Illuminate\View\View::renderContents@1 357 0.1% 103,209 10.9% 2,689 0.3% 102,621 10.9% 2,265 0.2% 2,998,968 42.6% 824 0.0% 2,231,064 20.0% 0 0.0%
Saaze\BuildCommand::buildCollectionIndex 16 0.0% 97,444 10.3% 346 0.0% 96,505 10.2% 280 0.0% 1,749,040 24.9% -277,968 -3.9% 3,360,416 30.1% 0 0.0%
Saaze\TemplateManager::renderCollection 16 0.0% 95,115 10.0% 547 0.1% 94,195 10.0% 475 0.1% 2,019,016 28.7% -6,135,880 -87.2% 3,360,416 30.1% 0 0.0%
Illuminate\View\View::getContents@1 357 0.1% 89,293 9.4% 1,588 0.2% 88,770 9.4% 1,427 0.2% 2,979,256 42.3% -138,640 -2.0% 2,231,064 20.0% 0 0.0%
Illuminate\View\Engines\CompilerEngine::get@1 357 0.1% 85,496 9.0% 2,901 0.3% 84,970 9.0% 2,362 0.3% 2,977,976 42.3% -67,704 -1.0% 2,231,064 20.0% 0 0.0%
Saaze\TemplateManager::toObject 714 0.2% 78,048 8.2% 5,066 0.5% 77,859 8.3% 4,323 0.5% 10,594,528 150.5% -9,207,744 -130.8% 3,262,056 29.2% 0 0.0%
Illuminate\Container\Container::build@1 1,071 0.4% 77,202 8.1% 4,390 0.5% 77,145 8.2% 3,817 0.4% 1,342,936 19.1% 776 0.0% 0 0.0% 0 0.0%
Saaze\Entry::getContent 682 0.2% 72,975 7.7% 2,200 0.2% 72,701 7.7% 2,101 0.2% 1,900,112 27.0% -2,141,992 -30.4% 1,664,384 14.9% 0 0.0%
Jenssegers\Blade\Blade::make 357 0.1% 72,104 7.6% 956 0.1% 71,498 7.6% 958 0.1% 672,264 9.6% 632 0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::Illuminate\View\{closure}@1 1,071 0.4% 71,356 7.5% 7,305 0.8% 71,294 7.6% 6,169 0.7% 1,437,096 20.4% 27,848 0.4% 10,408 0.1% 0 0.0%
Illuminate\View\Engines\PhpEngine::evaluatePath@1 357 0.1% 70,898 7.5% 3,044 0.3% 70,511 7.5% 2,424 0.3% 2,963,944 42.1% 920 0.0% 2,231,064 20.0% 320 0.0%
Saaze\MarkdownContentParser::toHtml 341 0.1% 70,218 7.4% 8,896 0.9% 69,861 7.4% 7,211 0.8% 4,041,552 57.4% -162,056 -2.3% 1,664,384 14.9% 3,904 0.0%
Illuminate\Filesystem\Filesystem::getRequire@1 357 0.1% 65,861 6.9% 1,978 0.2% 65,530 7.0% 1,761 0.2% 752,496 10.7% -10,696 -0.2% 2,217,008 19.9% 1,016 0.0%
Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}@1 357 0.1% 62,735 6.6% 11,023 1.2% 62,426 6.6% 9,088 1.0% 762,592 10.8% -5,956,056 -84.6% 2,215,392 19.9% 352 0.0%
Illuminate\Container\Container::offsetGet@1 714 0.2% 50,041 5.3% 1,671 0.2% 50,025 5.3% 1,707 0.2% 230,856 3.3% 696 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::make@1 714 0.2% 48,370 5.1% 1,665 0.2% 48,318 5.1% 1,636 0.2% 230,160 3.3% 648 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::resolve@2 714 0.2% 46,705 4.9% 12,683 1.3% 46,682 5.0% 9,861 1.0% 229,512 3.3% 1,288 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::viewInstance 714 0.2% 44,698 4.7% 3,135 0.3% 44,614 4.7% 2,816 0.3% 376,032 5.3% 98,936 1.4% 0 0.0% 0 0.0%
json_decode 714 0.2% 44,329 4.7% 44,329 4.7% 44,361 4.7% 44,361 4.7% 10,592,080 150.5% 10,592,080 150.5% 2,849,608 25.5% 2,849,608 25.5%
Illuminate\Container\Container::fireResolvingCallbacks 2,499 0.9% 41,905 4.4% 16,472 1.7% 42,570 4.5% 13,855 1.5% 5,280 0.1% 1,992 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::getEngineFromPath 714 0.2% 40,375 4.2% 3,189 0.3% 40,283 4.3% 2,846 0.3% 228,032 3.2% -267,752 -3.8% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::dispatch 1,428 0.5% 34,678 3.6% 7,870 0.8% 34,692 3.7% 6,853 0.7% 141,768 2.0% -535,568 -7.6% 0 0.0% 0 0.0%
Saaze\BuildCommand::clearBuildDirectory 1 0.0% 34,649 3.6% 11 0.0% 34,242 3.6% 7 0.0% 23,792 0.3% 616 0.0% 42,600 0.4% 320 0.0%
Saaze\BuildCommand::delTree 1 0.0% 34,626 3.6% 58 0.0% 34,221 3.6% 43 0.0% 22,592 0.3% -296 -0.0% 41,696 0.4% 576 0.0%
Saaze\BuildCommand::delTree@1 5 0.0% 34,389 3.6% 144 0.0% 33,984 3.6% 109 0.0% 18,248 0.3% -5,576 -0.1% 38,264 0.3% 952 0.0%
tap 1,071 0.4% 34,056 3.6% 2,650 0.3% 33,866 3.6% 2,652 0.3% 550,216 7.8% 1,232 0.0% 10,408 0.1% 0 0.0%
Saaze\BuildCommand::delTree@2 15 0.0% 33,459 3.5% 1,668 0.2% 33,080 3.5% 1,321 0.1% 14,448 0.2% -119,576 -1.7% 31,880 0.3% 576 0.0%
Illuminate\View\FileViewFinder::find 714 0.2% 32,413 3.4% 4,169 0.4% 32,307 3.4% 3,613 0.4% 198,304 2.8% 100,736 1.4% 0 0.0% 0 0.0%
Illuminate\View\Factory::Illuminate\View\{closure} 1,428 0.5% 31,693 3.3% 3,664 0.4% 31,755 3.4% 3,544 0.4% 180,464 2.6% 1,280 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::bind 2,499 0.9% 29,909 3.1% 15,234 1.6% 30,473 3.2% 13,095 1.4% 1,118,800 15.9% 136,256 1.9% 0 0.0% 0 0.0%
Illuminate\Container\Container::getContextualConcrete 3,927 1.3% 29,111 3.1% 14,064 1.5% 30,421 3.2% 12,724 1.4% 35,176 0.5% 1,928 0.0% 0 0.0% 0 0.0%
Saaze\BuildCommand::delTree@3 351 0.1% 28,344 3.0% 3,490 0.4% 28,128 3.0% 2,763 0.3% -14,520 -0.2% -254,528 -3.6% 6,176 0.1% 952 0.0%
json_encode 714 0.2% 27,409 2.9% 27,409 2.9% 27,538 2.9% 27,538 2.9% 9,209,640 130.9% 9,209,640 130.9% 412,448 3.7% 412,448 3.7%
load::blade/29513ba370818f79d7fcd4c46c01749ca88eb3e7.php 357 0.1% 25,690 2.7% 25,690 2.7% 25,876 2.7% 25,876 2.7% 6,221,080 88.4% 6,221,080 88.4% 2,214,136 19.8% 2,214,136 19.8%
Saaze\Entry::__construct 341 0.1% 25,630 2.7% 1,009 0.1% 25,209 2.7% 964 0.1% 2,327,328 33.1% -1,829,696 -26.0% 2,765,832 24.8% 0 0.0%
Illuminate\View\ViewServiceProvider::register 357 0.1% 25,434 2.7% 2,560 0.3% 25,225 2.7% 2,083 0.2% 1,033,264 14.7% 840 0.0% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::findInPaths 714 0.2% 25,113 2.6% 3,452 0.4% 25,060 2.7% 3,157 0.3% 95,784 1.4% -296,416 -4.2% 0 0.0% 0 0.0%
Jenssegers\Blade\Blade::setupContainer 357 0.1% 24,558 2.6% 2,930 0.3% 24,550 2.6% 2,537 0.3% 1,081,304 15.4% 468,592 6.7% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::amplink 341 0.1% 24,426 2.6% 12,264 1.3% 24,286 2.6% 9,943 1.1% 1,213,016 17.2% -10,193,728 -144.8% 1,125,088 10.1% 0 0.0%
Saaze\Entry::parseEntry 341 0.1% 24,231 2.5% 6,680 0.7% 23,851 2.5% 5,575 0.6% 4,022,880 57.2% 44,992 0.6% 2,603,784 23.3% 1,056 0.0%
Illuminate\View\Factory::callCreator 714 0.2% 23,692 2.5% 3,053 0.3% 23,641 2.5% 2,852 0.3% 177,368 2.5% 34,984 0.5% 0 0.0% 0 0.0%
Illuminate\View\Engines\EngineResolver::resolve 714 0.2% 22,870 2.4% 1,418 0.1% 23,066 2.4% 1,576 0.2% 168,368 2.4% 114,904 1.6% 0 0.0% 0 0.0%
e 7,126 2.4% 22,135 2.3% 14,409 1.5% 23,865 2.5% 14,689 1.6% 1,151,624 16.4% 2,304 0.0% 0 0.0% 0 0.0%
call_user_func 357 0.1% 21,452 2.3% 948 0.1% 21,490 2.3% 910 0.1% 53,464 0.8% 632 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::callComposer 714 0.2% 21,353 2.2% 2,812 0.3% 21,392 2.3% 2,621 0.3% 36,720 0.5% 35,568 0.5% 0 0.0% 0 0.0%
load::blade/56c05ac4e061723ff363d7caf2c96f5e3f59f291.php 328 0.1% 21,224 2.2% 21,224 2.2% 21,324 2.3% 21,324 2.3% 2,160,640 30.7% 2,160,640 30.7% 0 0.0% 0 0.0%
Illuminate\Container\Container::bindIf 1,071 0.4% 21,036 2.2% 3,992 0.4% 21,258 2.3% 3,672 0.4% 582,632 8.3% 712 0.0% 0 0.0% 0 0.0%
Illuminate\View\Compilers\Compiler::isExpired 714 0.2% 20,595 2.2% 5,062 0.5% 20,747 2.2% 4,296 0.5% 98,704 1.4% 1,392 0.0% 0 0.0% 0 0.0%
file_put_contents 357 0.1% 19,561 2.1% 19,561 2.1% 19,746 2.1% 19,746 2.1% 1,120 0.0% 1,120 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::fireAfterResolvingCallbacks 2,499 0.9% 18,951 2.0% 12,717 1.3% 19,579 2.1% 10,758 1.1% 2,024 0.0% 760 0.0% 0 0.0% 0 0.0%
array_map 1,087 0.4% 17,368 1.8% 6,688 0.7% 17,539 1.9% 5,973 0.6% 568,544 8.1% 422,736 6.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::yieldContent 1,071 0.4% 16,601 1.7% 8,275 0.9% 16,889 1.8% 7,026 0.7% 3,696 0.1% -170,536 -2.4% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::getPossibleViewFiles 714 0.2% 15,831 1.7% 2,149 0.2% 15,882 1.7% 2,125 0.2% 391,000 5.6% 664 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::singleton 1,071 0.4% 15,057 1.6% 2,677 0.3% 15,241 1.6% 2,646 0.3% 405,144 5.8% 1,864 0.0% 0 0.0% 0 0.0%
strpos 10,446 3.6% 14,842 1.6% 14,842 1.6% 17,465 1.9% 17,465 1.9% 6,048 0.1% 6,048 0.1% 552 0.0% 552 0.0%
str_replace 12,854 4.4% 14,352 1.5% 14,352 1.5% 17,618 1.9% 17,618 1.9% 903,272 12.8% 903,272 12.8% 1,688 0.0% 1,688 0.0%
Illuminate\View\Factory::getExtension 714 0.2% 14,316 1.5% 3,068 0.3% 14,371 1.5% 2,800 0.3% 327,416 4.7% -19,048 -0.3% 0 0.0% 0 0.0%
is_null 16,838 5.8% 13,494 1.4% 13,494 1.4% 18,371 2.0% 18,371 2.0% 26,520 0.4% 26,520 0.4% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::parseEventAndPayload 1,428 0.5% 13,396 1.4% 5,136 0.5% 13,849 1.5% 4,749 0.5% 540,008 7.7% 537,656 7.6% 0 0.0% 0 0.0%
Saaze\Entry::slug 1,023 0.4% 13,021 1.4% 7,722 0.8% 13,285 1.4% 6,748 0.7% 86,688 1.2% -295,392 -4.2% 0 0.0% 0 0.0%
Illuminate\Container\Container::fireBeforeResolvingCallbacks 3,927 1.3% 12,917 1.4% 9,402 1.0% 14,255 1.5% 9,295 1.0% 2,560 0.0% 1,928 0.0% 0 0.0% 0 0.0%
md4c_toHtml 341 0.1% 12,851 1.4% 12,851 1.4% 12,986 1.4% 12,986 1.4% 33,288 0.5% 33,288 0.5% 576 0.0% 576 0.0%
Illuminate\Container\Container::getLastParameterOverride 2,499 0.9% 12,748 1.3% 8,567 0.9% 13,592 1.4% 7,958 0.8% 14,488 0.2% 13,352 0.2% 0 0.0% 0 0.0%
Illuminate\Container\Container::findInContextualBindings 3,927 1.3% 11,927 1.3% 8,643 0.9% 13,330 1.4% 8,876 0.9% 32,680 0.5% 12,120 0.2% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::getListeners 1,428 0.5% 11,776 1.2% 7,544 0.8% 11,883 1.3% 6,408 0.7% 136,744 1.9% 776 0.0% 0 0.0% 0 0.0%
Illuminate\Filesystem\Filesystem::exists 1,428 0.5% 10,536 1.1% 3,248 0.3% 10,964 1.2% 3,164 0.3% 1,800 0.0% 1,248 0.0% 0 0.0% 0 0.0%
Illuminate\Support\Arr::first 714 0.2% 10,132 1.1% 3,208 0.3% 10,146 1.1% 2,834 0.3% 3,696 0.1% 696 0.0% 0 0.0% 0 0.0%
Saaze\Entry::getExcerpt 341 0.1% 10,014 1.1% 3,297 0.3% 10,015 1.1% 2,802 0.3% 275,320 3.9% -1,736,376 -24.7% 1,086,192 9.7% 0 0.0%
unlink 357 0.1% 9,790 1.0% 9,790 1.0% 9,803 1.0% 9,803 1.0% -64,640 -0.9% -64,640 -0.9% 784 0.0% 784 0.0%
Saaze\MarkdownContentParser::inlineMath 129 0.0% 9,428 1.0% 5,602 0.6% 9,438 1.0% 4,534 0.5% 93,072 1.3% -2,061,304 -29.3% 78,008 0.7% 52,920 0.5%
file_exists 1,791 0.6% 9,166 1.0% 9,166 1.0% 9,817 1.0% 9,817 1.0% 2,744 0.0% 2,744 0.0% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::Illuminate\View\{closure} 2,856 1.0% 8,810 0.9% 6,326 0.7% 9,451 1.0% 6,187 0.7% 121,240 1.7% 64,192 0.9% 0 0.0% 0 0.0%
rmdir 372 0.1% 8,705 0.9% 8,705 0.9% 8,838 0.9% 8,838 0.9% 2,144 0.0% 2,144 0.0% 240 0.0% 240 0.0%
is_dir 1,810 0.6% 8,402 0.9% 8,402 0.9% 8,903 0.9% 8,903 0.9% 28,536 0.4% 28,536 0.4% 2,800 0.0% 2,800 0.0%
Illuminate\Container\Container::fireCallbackArray 9,996 3.4% 8,380 0.9% 8,380 0.9% 11,857 1.3% 11,857 1.3% 1,264 0.0% 1,264 0.0% 0 0.0% 0 0.0%
substr 8,761 3.0% 8,192 0.9% 8,192 0.9% 10,185 1.1% 10,185 1.1% 5,195,992 73.8% 5,195,992 73.8% 592,856 5.3% 592,856 5.3%
Illuminate\Container\Container::getExtenders 2,499 0.9% 7,978 0.8% 5,860 0.6% 8,803 0.9% 5,830 0.6% 2,432 0.0% 1,848 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::build@2 714 0.2% 7,941 0.8% 2,901 0.3% 8,149 0.9% 2,518 0.3% 222,352 3.2% 712 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::resolved 2,499 0.9% 7,834 0.8% 5,714 0.6% 8,486 0.9% 5,544 0.6% 1,232 0.0% 648 0.0% 0 0.0% 0 0.0%
htmlspecialchars 7,126 2.4% 7,726 0.8% 7,726 0.8% 9,176 1.0% 9,176 1.0% 1,149,320 16.3% 1,149,320 16.3% 0 0.0% 0 0.0%
Illuminate\Filesystem\Filesystem::lastModified 1,428 0.5% 7,713 0.8% 2,931 0.3% 8,123 0.9% 2,949 0.3% 15,512 0.2% 664 0.0% 0 0.0% 0 0.0%
mkdir 356 0.1% 7,388 0.8% 7,388 0.8% 7,509 0.8% 7,509 0.8% 1,088 0.0% 1,088 0.0% 0 0.0% 0 0.0%
Illuminate\Support\Arr::wrap 1,428 0.5% 7,086 0.7% 4,729 0.5% 7,471 0.8% 4,386 0.5% 1,784 0.0% 712 0.0% 0 0.0% 0 0.0%
file_get_contents 344 0.1% 7,081 0.7% 7,081 0.7% 7,212 0.8% 7,212 0.8% 1,719,280 24.4% 1,719,280 24.4% 2,049,264 18.4% 2,049,264 18.4%
Saaze\Entry::getUrl 341 0.1% 7,079 0.7% 2,340 0.2% 7,036 0.7% 1,962 0.2% 94,856 1.3% 34,088 0.5% 0 0.0% 0 0.0%
Saaze\EntryManager::sortEntries 3 0.0% 6,853 0.7% 29 0.0% 6,750 0.7% 27 0.0% -25,128 -0.4% 728 0.0% 0 0.0% 0 0.0%
usort 3 0.0% 6,821 0.7% 3,954 0.4% 6,718 0.7% 3,234 0.3% -26,408 -0.4% -26,960 -0.4% 0 0.0% 0 0.0%
yaml_parse 344 0.1% 6,383 0.7% 6,383 0.7% 6,340 0.7% 6,340 0.7% 563,880 8.0% 563,880 8.0% 9,552 0.1% 9,552 0.1%
Illuminate\View\ViewServiceProvider::registerFactory 357 0.1% 6,137 0.6% 972 0.1% 6,145 0.7% 953 0.1% 250,384 3.6% 114,904 1.6% 0 0.0% 0 0.0%
Illuminate\View\Factory::normalizeName 714 0.2% 5,984 0.6% 1,715 0.2% 6,232 0.7% 1,721 0.2% 19,440 0.3% -872 -0.0% 0 0.0% 0 0.0%
Illuminate\Support\Arr::except 357 0.1% 5,899 0.6% 985 0.1% 5,869 0.6% 999 0.1% 14,504 0.2% 12,088 0.2% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerBladeCompiler 357 0.1% 5,885 0.6% 923 0.1% 5,950 0.6% 866 0.1% 249,768 3.5% 114,936 1.6% 0 0.0% 0 0.0%
scandir 388 0.1% 5,837 0.6% 5,837 0.6% 5,941 0.6% 5,941 0.6% 282,736 4.0% 282,736 4.0% 21,088 0.2% 21,088 0.2%
Illuminate\View\ViewServiceProvider::registerEngineResolver 357 0.1% 5,776 0.6% 846 0.1% 5,809 0.6% 844 0.1% 249,768 3.5% 114,936 1.6% 0 0.0% 0 0.0%
end 6,810 2.3% 5,712 0.6% 5,712 0.6% 7,678 0.8% 7,678 0.8% 166,048 2.4% 166,048 2.4% 0 0.0% 0 0.0%
Illuminate\Container\Container::getAlias 6,426 2.2% 5,508 0.6% 5,508 0.6% 7,972 0.8% 7,972 0.8% 2,336 0.0% 2,336 0.0% 0 0.0% 0 0.0%
Illuminate\View\Compilers\Compiler::getCompiledPath 1,428 0.5% 5,504 0.6% 3,472 0.4% 6,083 0.6% 3,494 0.4% 162,368 2.3% 47,560 0.7% 0 0.0% 0 0.0%
Saaze\BuildCommand::compRbase 357 0.1% 5,443 0.6% 3,379 0.4% 5,568 0.6% 2,704 0.3% 18,984 0.3% -50,128 -0.7% 0 0.0% 0 0.0%
Illuminate\View\Factory::flushStateIfDoneRendering 714 0.2% 5,204 0.5% 2,223 0.2% 5,347 0.6% 2,077 0.2% -2,445,728 -34.8% 1,296 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::startSection 714 0.2% 5,124 0.5% 2,403 0.3% 5,309 0.6% 2,255 0.2% 6,228,328 88.5% 139,152 2.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerViewFinder 357 0.1% 5,076 0.5% 963 0.1% 5,238 0.6% 988 0.1% 282,504 4.0% 147,672 2.1% 0 0.0% 0 0.0%
Illuminate\View\Compilers\BladeCompiler::component 357 0.1% 5,008 0.5% 2,405 0.3% 5,063 0.5% 2,013 0.2% 370,352 5.3% 109,536 1.6% 10,408 0.1% 0 0.0%
Illuminate\Support\Arr::forget 357 0.1% 4,914 0.5% 2,372 0.2% 4,870 0.5% 2,044 0.2% 2,416 0.0% 696 0.0% 0 0.0% 0 0.0%
filemtime 1,428 0.5% 4,782 0.5% 4,782 0.5% 5,174 0.5% 5,174 0.5% 14,848 0.2% 14,848 0.2% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::createFactory 357 0.1% 4,586 0.5% 1,133 0.1% 4,751 0.5% 1,109 0.1% 464,448 6.6% 155,504 2.2% 0 0.0% 0 0.0%
Illuminate\View\View::name 1,428 0.5% 4,502 0.5% 3,261 0.3% 4,868 0.5% 3,185 0.3% 1,768 0.0% 1,200 0.0% 0 0.0% 0 0.0%
Illuminate\View\View::gatherData 714 0.2% 4,447 0.5% 3,076 0.3% 4,741 0.5% 2,797 0.3% 275,968 3.9% 1,264 0.0% 0 0.0% 0 0.0%
Illuminate\Support\Str::endsWith 714 0.2% 4,337 0.5% 3,073 0.3% 4,570 0.5% 2,851 0.3% 1,816 0.0% -27,848 -0.4% 0 0.0% 0 0.0%
Illuminate\Container\Container::getCallbacksForType 4,998 1.7% 4,336 0.5% 4,336 0.5% 6,100 0.6% 6,100 0.6% 1,264 0.0% 1,264 0.0% 0 0.0% 0 0.0%
strip_tags 341 0.1% 4,295 0.5% 4,295 0.5% 4,402 0.5% 4,402 0.5% 1,800,600 25.6% 1,800,600 25.6% 1,086,192 9.7% 1,086,192 9.7%
Illuminate\View\ViewName::normalize 714 0.2% 4,189 0.4% 2,642 0.3% 4,448 0.5% 2,405 0.3% 15,936 0.2% 712 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::stopSection 357 0.1% 3,888 0.4% 2,174 0.2% 3,849 0.4% 1,830 0.2% -4,327,024 -61.5% 12,248 0.2% 7,032 0.1% 0 0.0%
Illuminate\View\FileViewFinder::__construct 357 0.1% 3,864 0.4% 1,041 0.1% 4,027 0.4% 1,114 0.1% 159,560 2.3% 696 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::bound 1,071 0.4% 3,628 0.4% 2,688 0.3% 3,958 0.4% 2,618 0.3% 1,232 0.0% 648 0.0% 0 0.0% 0 0.0%
Jenssegers\Blade\Blade::Jenssegers\Blade\{closure} 1,071 0.4% 3,522 0.4% 1,891 0.2% 4,020 0.4% 2,190 0.2% 496,488 7.1% 143,688 2.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::fireBeforeCallbackArray 3,927 1.3% 3,515 0.4% 3,515 0.4% 4,960 0.5% 4,960 0.5% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
strlen 4,136 1.4% 3,432 0.4% 3,432 0.4% 4,444 0.5% 4,444 0.5% 4,368 0.1% 4,368 0.1% 592 0.0% 592 0.0%
array_pop 3,586 1.2% 3,362 0.4% 3,362 0.4% 4,491 0.5% 4,491 0.5% 3,880 0.1% 3,880 0.1% 0 0.0% 0 0.0%
array_merge 3,240 1.1% 3,130 0.3% 3,130 0.3% 4,115 0.4% 4,115 0.4% 788,848 11.2% 788,848 11.2% 0 0.0% 0 0.0%
Illuminate\Container\Container::isAlias 3,570 1.2% 3,060 0.3% 3,060 0.3% 4,282 0.5% 4,282 0.5% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
Saaze\TemplateManager::templateExists 357 0.1% 2,949 0.3% 1,103 0.1% 3,062 0.3% 1,081 0.1% 1,784 0.0% 1,232 0.0% 0 0.0% 0 0.0%
Saaze\EntryManager::Saaze\{closure} 2,975 1.0% 2,867 0.3% 2,867 0.3% 3,484 0.4% 3,484 0.4% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
date 1,076 0.4% 2,849 0.3% 2,849 0.3% 3,210 0.3% 3,210 0.3% 276,624 3.9% 276,624 3.9% 0 0.0% 0 0.0%
count 3,338 1.1% 2,827 0.3% 2,827 0.3% 3,825 0.4% 3,825 0.4% 4,928 0.1% 4,928 0.1% 552 0.0% 552 0.0%
Illuminate\View\Factory::getLastLoop 400 0.1% 2,811 0.3% 915 0.1% 2,968 0.3% 950 0.1% 17,224 0.2% -140,616 -2.0% 0 0.0% 0 0.0%
substr_replace 1,936 0.7% 2,809 0.3% 2,809 0.3% 3,258 0.3% 3,258 0.3% 11,441,136 162.6% 11,441,136 162.6% 1,140,416 10.2% 1,140,416 10.2%
strtotime 719 0.2% 2,798 0.3% 2,798 0.3% 3,157 0.3% 3,157 0.3% 1,200 0.0% 1,200 0.0% 0 0.0% 0 0.0%
microtime 3,135 1.1% 2,752 0.3% 2,752 0.3% 3,555 0.4% 3,555 0.4% 6,256 0.1% 6,256 0.1% 0 0.0% 0 0.0%
is_link 728 0.2% 2,731 0.3% 2,731 0.3% 2,926 0.3% 2,926 0.3% 38,352 0.5% 38,352 0.5% 856 0.0% 856 0.0%
Illuminate\Container\Container::isShared 2,499 0.9% 2,723 0.3% 2,723 0.3% 3,636 0.4% 3,636 0.4% 1,752 0.0% 1,752 0.0% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::youtube 168 0.1% 2,551 0.3% 370 0.0% 2,597 0.3% 365 0.0% 91,096 1.3% -672 -0.0% 21,632 0.2% 768 0.0%
ob_get_clean 1,071 0.4% 2,544 0.3% 2,544 0.3% 2,918 0.3% 2,918 0.3% -11,699,016 -166.2% -11,699,016 -166.2% 7,032 0.1% 7,032 0.1%
Illuminate\Container\Container::getConcrete 2,499 0.9% 2,521 0.3% 2,521 0.3% 3,462 0.4% 3,462 0.4% 9,944 0.1% 9,944 0.1% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::hasHintInformation 714 0.2% 2,479 0.3% 1,882 0.2% 2,757 0.3% 1,899 0.2% 1,232 0.0% 664 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::__construct 357 0.1% 2,429 0.3% 1,081 0.1% 2,633 0.3% 1,128 0.1% 136,080 1.9% -133,568 -1.9% 0 0.0% 0 0.0%
Illuminate\View\Factory::share 714 0.2% 2,424 0.3% 1,837 0.2% 2,708 0.3% 1,927 0.2% 404,480 5.7% 403,928 5.7% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::myTag 179 0.1% 2,397 0.3% 1,409 0.1% 2,465 0.3% 1,230 0.1% 101,936 1.4% -108,512 -1.5% 20,864 0.2% 552 0.0%
compact 2,499 0.9% 2,375 0.2% 2,375 0.2% 3,028 0.3% 3,028 0.3% 940,176 13.4% 940,176 13.4% 0 0.0% 0 0.0%
Illuminate\Container\Container::dropStaleInstances 2,499 0.9% 2,346 0.2% 2,346 0.2% 3,182 0.3% 3,182 0.3% 40,584 0.6% 40,584 0.6% 0 0.0% 0 0.0%
Illuminate\Filesystem\Filesystem::isFile 714 0.2% 2,333 0.2% 1,504 0.2% 2,607 0.3% 1,577 0.2% 1,800 0.0% 1,248 0.0% 600 0.0% 600 0.0%
Illuminate\View\Factory::flushState 357 0.1% 2,311 0.2% 1,478 0.2% 2,358 0.3% 1,334 0.1% -2,447,624 -34.8% 728 0.0% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::displayMath 129 0.0% 2,225 0.2% 1,324 0.1% 2,270 0.2% 1,137 0.1% 54,680 0.8% -728,816 -10.4% 51,160 0.5% 30,920 0.3%
Illuminate\Support\Arr::exists 714 0.2% 2,201 0.2% 1,555 0.2% 2,385 0.3% 1,516 0.2% 1,184 0.0% 632 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::incrementLoopIndices 384 0.1% 2,179 0.2% 1,463 0.2% 2,244 0.2% 1,345 0.1% 514,904 7.3% 760 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::isBuildable 2,499 0.9% 2,177 0.2% 2,177 0.2% 3,071 0.3% 3,071 0.3% 1,752 0.0% 1,752 0.0% 0 0.0% 0 0.0%
ltrim 2,092 0.7% 2,048 0.2% 2,048 0.2% 2,693 0.3% 2,693 0.3% 3,045,024 43.3% 3,045,024 43.3% 0 0.0% 0 0.0%
sha1 1,430 0.5% 2,036 0.2% 2,036 0.2% 2,593 0.3% 2,593 0.3% 115,520 1.6% 115,520 1.6% 0 0.0% 0 0.0%
Illuminate\Support\Arr::last 416 0.1% 1,997 0.2% 1,320 0.1% 2,123 0.2% 1,238 0.1% 159,608 2.3% 13,616 0.2% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::moreTag 341 0.1% 1,951 0.2% 782 0.1% 2,041 0.2% 769 0.1% 563,888 8.0% 648 0.0% 1,032 0.0% 0 0.0%
is_array 2,158 0.7% 1,813 0.2% 1,813 0.2% 2,363 0.3% 2,363 0.3% 1,640 0.0% 1,640 0.0% 0 0.0% 0 0.0%
array_key_exists 2,078 0.7% 1,799 0.2% 1,799 0.2% 2,372 0.3% 2,372 0.3% 2,192 0.0% 2,192 0.0% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::shouldBroadcast 1,428 0.5% 1,636 0.2% 1,636 0.2% 2,107 0.2% 2,107 0.2% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::resolvePath 357 0.1% 1,524 0.2% 864 0.1% 1,687 0.2% 881 0.1% 24,016 0.3% 616 0.0% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::getWildcardListeners 1,428 0.5% 1,518 0.2% 1,518 0.2% 2,041 0.2% 2,041 0.2% 134,832 1.9% 134,832 1.9% 0 0.0% 0 0.0%
ob_start 1,071 0.4% 1,508 0.2% 1,508 0.2% 1,915 0.2% 1,915 0.2% 17,686,168 251.3% 17,686,168 251.3% 13,736 0.1% 13,736 0.1%
class_exists 1,428 0.5% 1,473 0.2% 1,473 0.2% 1,782 0.2% 1,782 0.2% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Illuminate\Support\Str::contains 357 0.1% 1,466 0.2% 1,016 0.1% 1,626 0.2% 1,043 0.1% 1,200 0.0% 648 0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerFileEngine 357 0.1% 1,438 0.2% 1,000 0.1% 1,600 0.2% 1,006 0.1% 269,792 3.8% 114,936 1.6% 0 0.0% 0 0.0%
Illuminate\View\Engines\CompilerEngine::__construct 357 0.1% 1,420 0.1% 1,070 0.1% 1,563 0.2% 1,074 0.1% 1,296 0.0% 696 0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerPhpEngine 357 0.1% 1,253 0.1% 899 0.1% 1,422 0.2% 897 0.1% 115,568 1.6% 114,936 1.6% 0 0.0% 0 0.0%
Illuminate\View\View::getName 1,428 0.5% 1,241 0.1% 1,241 0.1% 1,683 0.2% 1,683 0.2% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerBladeEngine 357 0.1% 1,205 0.1% 891 0.1% 1,382 0.1% 901 0.1% 115,568 1.6% 114,936 1.6% 0 0.0% 0 0.0%
is_object 1,428 0.5% 1,174 0.1% 1,174 0.1% 1,629 0.2% 1,629 0.2% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
strrpos 1,308 0.4% 1,150 0.1% 1,150 0.1% 1,551 0.2% 1,551 0.2% 2,688 0.0% 2,688 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::parentPlaceholder 1,071 0.4% 1,126 0.1% 1,122 0.1% 1,601 0.2% 1,597 0.2% 1,768 0.0% 1,056 0.0% 0 0.0% 0 0.0%
load::blade/ef5aa1c7f5ff55abf596e3c02722e65eb2996f4f.php 12 0.0% 1,109 0.1% 1,109 0.1% 1,124 0.1% 1,124 0.1% 136,400 1.9% 136,400 1.9% 0 0.0% 0 0.0%
Illuminate\View\Engines\EngineResolver::register 1,071 0.4% 1,106 0.1% 1,106 0.1% 1,600 0.2% 1,600 0.2% 156,120 2.2% 156,120 2.2% 0 0.0% 0 0.0%
trim 1,182 0.4% 1,055 0.1% 1,055 0.1% 1,482 0.2% 1,482 0.2% 3,976 0.1% 3,976 0.1% 120 0.0% 120 0.0%
extract 714 0.2% 998 0.1% 998 0.1% 1,320 0.1% 1,320 0.1% 1,488 0.0% 1,488 0.0% 904 0.0% 904 0.0%
implode 1,011 0.3% 991 0.1% 991 0.1% 1,328 0.1% 1,328 0.1% 151,736 2.2% 151,736 2.2% 55,576 0.5% 55,576 0.5%
Illuminate\View\Factory::extendSection 714 0.2% 944 0.1% 944 0.1% 1,216 0.1% 1,216 0.1% 135,400 1.9% 135,400 1.9% 0 0.0% 0 0.0%
rtrim 1,054 0.4% 936 0.1% 936 0.1% 1,311 0.1% 1,311 0.1% 16,352 0.2% 16,352 0.2% 0 0.0% 0 0.0%
ucfirst 1,071 0.4% 930 0.1% 930 0.1% 1,290 0.1% 1,290 0.1% 34,856 0.5% 34,856 0.5% 0 0.0% 0 0.0%
Illuminate\View\View::__construct 714 0.2% 904 0.1% 904 0.1% 1,228 0.1% 1,228 0.1% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
load::container/Container.php 1 0.0% 860 0.1% 860 0.1% 863 0.1% 863 0.1% 151,376 2.2% 151,376 2.2% 0 0.0% 0 0.0%
is_file 714 0.2% 829 0.1% 829 0.1% 1,030 0.1% 1,030 0.1% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
ctype_space 682 0.2% 793 0.1% 793 0.1% 765 0.1% 765 0.1% 536 0.0% 536 0.0% 0 0.0% 0 0.0%
load::blade/13c19afb12793d725d903c2bcf9dcb0b71ac3615.php 11 0.0% 768 0.1% 768 0.1% 784 0.1% 784 0.1% 73,056 1.0% 73,056 1.0% 0 0.0% 0 0.0%
Saaze\Entry::setCollection 682 0.2% 727 0.1% 727 0.1% 976 0.1% 976 0.1% 1,104 0.0% 1,104 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::incrementRender 714 0.2% 708 0.1% 708 0.1% 1,039 0.1% 1,039 0.1% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
array_keys 714 0.2% 706 0.1% 706 0.1% 1,013 0.1% 1,013 0.1% 269,016 3.8% 269,016 3.8% 0 0.0% 0 0.0%
Illuminate\View\Factory::parseData 714 0.2% 690 0.1% 690 0.1% 956 0.1% 956 0.1% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::doneRendering 714 0.2% 670 0.1% 670 0.1% 912 0.1% 912 0.1% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
FFI::string 341 0.1% 667 0.1% 667 0.1% 771 0.1% 771 0.1% 1,800,616 25.6% 1,800,616 25.6% 234,128 2.1% 234,128 2.1%
realpath 357 0.1% 660 0.1% 660 0.1% 806 0.1% 806 0.1% 23,400 0.3% 23,400 0.3% 0 0.0% 0 0.0%
Illuminate\View\Factory::decrementRender 714 0.2% 657 0.1% 657 0.1% 939 0.1% 939 0.1% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
ob_get_level 714 0.2% 631 0.1% 631 0.1% 864 0.1% 864 0.1% 1,136 0.0% 1,136 0.0% 0 0.0% 0 0.0%
load::Compilers/BladeCompiler.php 1 0.0% 618 0.1% 618 0.1% 539 0.1% 539 0.1% 95,880 1.4% 95,880 1.4% 0 0.0% 0 0.0%
Saaze\CollectionManager::getCollections 1 0.0% 591 0.1% 9 0.0% 583 0.1% 6 0.0% 22,160 0.3% 648 0.0% 36,600 0.3% 0 0.0%
Illuminate\View\Factory::getShared 714 0.2% 589 0.1% 589 0.1% 893 0.1% 893 0.1% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
load::support/Str.php 1 0.0% 575 0.1% 575 0.1% 577 0.1% 577 0.1% 259,048 3.7% 259,048 3.7% 10,408 0.1% 10,408 0.1%
load::events/Dispatcher.php 1 0.0% 518 0.1% 518 0.1% 520 0.1% 520 0.1% 85,808 1.2% 85,808 1.2% 0 0.0% 0 0.0%
Saaze\CollectionManager::loadCollections 1 0.0% 516 0.1% 44 0.0% 517 0.1% 35 0.0% 18,432 0.3% -168 -0.0% 36,600 0.3% 0 0.0%
Illuminate\View\Factory::flushSections 357 0.1% 496 0.1% 496 0.1% 558 0.1% 558 0.1% -2,448,936 -34.8% -2,448,936 -34.8% 0 0.0% 0 0.0%
array_diff 372 0.1% 466 0.0% 466 0.0% 573 0.1% 573 0.1% 161,792 2.3% 161,792 2.3% 13,456 0.1% 13,456 0.1%
load::filesystem/Filesystem.php 1 0.0% 462 0.0% 462 0.0% 463 0.0% 463 0.0% 84,264 1.2% 84,264 1.2% 0 0.0% 0 0.0%
mb_strpos 357 0.1% 450 0.0% 450 0.0% 583 0.1% 583 0.1% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::__construct 357 0.1% 435 0.0% 435 0.0% 627 0.1% 627 0.1% 154,072 2.2% 154,072 2.2% 0 0.0% 0 0.0%
Symfony\Component\Console\Output\Output::writeln 2 0.0% 429 0.0% 24 0.0% 431 0.0% 10 0.0% 23,328 0.3% -328 -0.0% 2,544 0.0% 0 0.0%
Illuminate\View\Compilers\Compiler::__construct 357 0.1% 426 0.0% 426 0.0% 556 0.1% 556 0.1% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Illuminate\Support\Facades\Facade::setFacadeApplication 357 0.1% 422 0.0% 422 0.0% 584 0.1% 584 0.1% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
get_defined_vars 357 0.1% 419 0.0% 419 0.0% 566 0.1% 566 0.1% 249,056 3.5% 249,056 3.5% 0 0.0% 0 0.0%
Saaze\CollectionManager::loadCollection 3 0.0% 417 0.0% 48 0.0% 421 0.0% 43 0.0% 15,672 0.2% -2,488 -0.0% 36,600 0.3% 0 0.0%
load::collections/Arr.php 1 0.0% 410 0.0% 410 0.0% 412 0.0% 412 0.0% 73,752 1.0% 73,752 1.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Output\Output::write 2 0.0% 405 0.0% 29 0.0% 421 0.0% 37 0.0% 23,656 0.3% 1,400 0.0% 2,544 0.0% 0 0.0%
load::src/MarkdownContentParser.php 1 0.0% 380 0.0% 380 0.0% 381 0.0% 381 0.0% 131,856 1.9% 131,856 1.9% 162,048 1.5% 162,048 1.5%
str_repeat 356 0.1% 379 0.0% 379 0.0% 506 0.1% 506 0.1% 17,600 0.3% 17,600 0.3% 0 0.0% 0 0.0%
substr_count 357 0.1% 378 0.0% 378 0.0% 508 0.1% 508 0.1% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Saaze\EntryManager::setCollection 360 0.1% 375 0.0% 375 0.0% 528 0.1% 528 0.1% 1,704 0.0% 1,704 0.0% 0 0.0% 0 0.0%
Saaze\EntryManager::paginateEntriesForTemplate 16 0.0% 369 0.0% 178 0.0% 376 0.0% 156 0.0% 202,792 2.9% 12,768 0.2% 0 0.0% 0 0.0%
Illuminate\View\Engines\PhpEngine::__construct 357 0.1% 350 0.0% 350 0.0% 489 0.1% 489 0.1% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
Saaze\TemplateManager::Saaze\{closure} 384 0.1% 346 0.0% 346 0.0% 428 0.0% 428 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::setContainer 357 0.1% 337 0.0% 337 0.0% 535 0.1% 535 0.1% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::flushStacks 357 0.1% 337 0.0% 337 0.0% 466 0.0% 466 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::format 2 0.0% 325 0.0% 7 0.0% 327 0.0% 7 0.0% 17,736 0.3% -8,088 -0.1% 2,544 0.0% 64 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::formatAndWrap 2 0.0% 318 0.0% 63 0.0% 320 0.0% 49 0.0% 25,824 0.4% 1,176 0.0% 2,480 0.0% 408 0.0%
Illuminate\Support\ServiceProvider::__construct 357 0.1% 301 0.0% 301 0.0% 493 0.1% 493 0.1% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
load::view/Factory.php 1 0.0% 298 0.0% 298 0.0% 300 0.0% 300 0.0% 59,120 0.8% 59,120 0.8% 0 0.0% 0 0.0%
load::support/ServiceProvider.php 1 0.0% 265 0.0% 265 0.0% 266 0.0% 266 0.0% 54,056 0.8% 54,056 0.8% 0 0.0% 0 0.0%
load::src/Blade.php 1 0.0% 247 0.0% 247 0.0% 249 0.0% 249 0.0% 22,792 0.3% 22,792 0.3% 0 0.0% 0 0.0%
Illuminate\View\Factory::addLoop 16 0.0% 244 0.0% 114 0.0% 253 0.0% 108 0.0% 20,816 0.3% 17,944 0.3% 0 0.0% 0 0.0%
load::src/Entry.php 1 0.0% 228 0.0% 228 0.0% 230 0.0% 230 0.0% 29,880 0.4% 29,880 0.4% 47,192 0.4% 47,192 0.4%
load::view/View.php 1 0.0% 218 0.0% 218 0.0% 219 0.0% 219 0.0% 39,904 0.6% 39,904 0.6% 0 0.0% 0 0.0%
load::view/FileViewFinder.php 1 0.0% 211 0.0% 211 0.0% 213 0.0% 213 0.0% 99,424 1.4% 99,424 1.4% 0 0.0% 0 0.0%
Saaze\Collection::__construct 3 0.0% 202 0.0% 15 0.0% 204 0.0% 14 0.0% 5,416 0.1% 696 0.0% 0 0.0% 0 0.0%
load::blade/c55bb20d3a1f4133f059b6057a9bbf83ae200d79.php 2 0.0% 201 0.0% 201 0.0% 204 0.0% 204 0.0% 23,128 0.3% 23,128 0.3% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::codepen 7 0.0% 188 0.0% 30 0.0% 188 0.0% 17 0.0% 7,288 0.1% 216 0.0% 0 0.0% 0 0.0%
load::Concerns/ManagesComponents.php 1 0.0% 186 0.0% 186 0.0% 161 0.0% 161 0.0% 21,048 0.3% 21,048 0.3% 0 0.0% 0 0.0%
Saaze\Collection::parseCollection 3 0.0% 177 0.0% 17 0.0% 179 0.0% 15 0.0% 4,072 0.1% 216 0.0% 0 0.0% 0 0.0%
load::Facades/Facade.php 1 0.0% 170 0.0% 170 0.0% 171 0.0% 171 0.0% 29,480 0.4% 29,480 0.4% 0 0.0% 0 0.0%
array_chunk 16 0.0% 161 0.0% 161 0.0% 171 0.0% 171 0.0% 188,920 2.7% 188,920 2.7% 0 0.0% 0 0.0%
explode 62 0.0% 158 0.0% 158 0.0% 182 0.0% 182 0.0% 216,480 3.1% 216,480 3.1% 92,176 0.8% 92,176 0.8%
load::blade/23fd8d0f46956a71d84a37247594e8e53d16b5d3.php 2 0.0% 155 0.0% 155 0.0% 159 0.0% 159 0.0% 14,696 0.2% 14,696 0.2% 0 0.0% 0 0.0%
load::src/Collection.php 1 0.0% 144 0.0% 144 0.0% 146 0.0% 146 0.0% 10,416 0.1% 10,416 0.1% 36,600 0.3% 36,600 0.3%
load::Concerns/ManagesLayouts.php 1 0.0% 143 0.0% 143 0.0% 144 0.0% 144 0.0% 25,912 0.4% 25,912 0.4% 0 0.0% 0 0.0%
load::Concerns/CompilesComponents.php 1 0.0% 134 0.0% 134 0.0% 135 0.0% 135 0.0% 28,208 0.4% 28,208 0.4% 0 0.0% 0 0.0%
load::view/ViewServiceProvider.php 1 0.0% 130 0.0% 130 0.0% 131 0.0% 131 0.0% 26,328 0.4% 26,328 0.4% 0 0.0% 0 0.0%
load::Concerns/ManagesStacks.php 1 0.0% 127 0.0% 127 0.0% 128 0.0% 128 0.0% 23,592 0.3% 23,592 0.3% 0 0.0% 0 0.0%
load::Concerns/ManagesEvents.php 1 0.0% 126 0.0% 126 0.0% 128 0.0% 128 0.0% 25,232 0.4% 25,232 0.4% 0 0.0% 0 0.0%
load::Concerns/CompilesConditionals.php 1 0.0% 123 0.0% 123 0.0% 125 0.0% 125 0.0% 27,640 0.4% 27,640 0.4% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatterStyle::apply 6 0.0% 122 0.0% 21 0.0% 124 0.0% 20 0.0% 7,408 0.1% 1,424 0.0% 2,072 0.0% 32 0.0%
load::Container/Container.php 1 0.0% 122 0.0% 122 0.0% 102 0.0% 102 0.0% 20,296 0.3% 20,296 0.3% 0 0.0% 0 0.0%
load::Concerns/ManagesLoops.php 1 0.0% 100 0.0% 100 0.0% 102 0.0% 102 0.0% 12,720 0.2% 12,720 0.2% 0 0.0% 0 0.0%
load::Concerns/CompilesLoops.php 1 0.0% 100 0.0% 100 0.0% 101 0.0% 101 0.0% 23,776 0.3% 23,776 0.3% 0 0.0% 0 0.0%
Symfony\Component\Console\Color::apply 6 0.0% 99 0.0% 28 0.0% 100 0.0% 22 0.0% 5,400 0.1% -7,416 -0.1% 2,040 0.0% 256 0.0%
load::Traits/Macroable.php 1 0.0% 98 0.0% 98 0.0% 99 0.0% 99 0.0% 12,672 0.2% 12,672 0.2% 0 0.0% 0 0.0%
load::Concerns/CompilesEchos.php 1 0.0% 95 0.0% 95 0.0% 97 0.0% 97 0.0% 15,976 0.2% 15,976 0.2% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatterStyleStack::pop 2 0.0% 90 0.0% 20 0.0% 92 0.0% 17 0.0% 1,872 0.0% -840 -0.0% 2,072 0.0% 0 0.0%
load::Engines/CompilerEngine.php 1 0.0% 88 0.0% 88 0.0% 89 0.0% 89 0.0% 12,136 0.2% 12,136 0.2% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::applyCurrentStyle 6 0.0% 85 0.0% 23 0.0% 88 0.0% 24 0.0% 8,800 0.1% 856 0.0% 0 0.0% 0 0.0%
load::blade/1c70db475e49eb596277cde91629aceff5933823.php 2 0.0% 84 0.0% 84 0.0% 86 0.0% 86 0.0% 8,112 0.1% 8,112 0.1% 0 0.0% 0 0.0%
load::view/ViewName.php 1 0.0% 80 0.0% 80 0.0% 63 0.0% 63 0.0% 4,376 0.1% 4,376 0.1% 0 0.0% 0 0.0%
printf 4 0.0% 71 0.0% 71 0.0% 72 0.0% 72 0.0% 544 0.0% 544 0.0% 0 0.0% 0 0.0%
load::Traits/ReflectsClosures.php 1 0.0% 71 0.0% 71 0.0% 72 0.0% 72 0.0% 8,088 0.1% 8,088 0.1% 0 0.0% 0 0.0%
Saaze\CollectionManager::sortCollections 1 0.0% 66 0.0% 5 0.0% 60 0.0% 6 0.0% 3,080 0.0% 680 0.0% 0 0.0% 0 0.0%
load::Engines/EngineResolver.php 1 0.0% 63 0.0% 63 0.0% 64 0.0% 64 0.0% 6,712 0.1% 6,712 0.1% 0 0.0% 0 0.0%
load::Compilers/Compiler.php 1 0.0% 62 0.0% 62 0.0% 64 0.0% 64 0.0% 7,920 0.1% 7,920 0.1% 0 0.0% 0 0.0%
uasort 1 0.0% 61 0.0% 26 0.0% 54 0.0% 24 0.0% 2,400 0.0% 616 0.0% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::wpvideo 1 0.0% 61 0.0% 4 0.0% 62 0.0% 3 0.0% 2,256 0.0% 648 0.0% 0 0.0% 0 0.0%
call_user_func_array 4 0.0% 60 0.0% 18 0.0% 60 0.0% 17 0.0% 3,368 0.0% -1,152 -0.0% 0 0.0% 0 0.0%
preg_match_all 2 0.0% 59 0.0% 59 0.0% 61 0.0% 61 0.0% 9,968 0.1% 9,968 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesLayouts.php 1 0.0% 58 0.0% 58 0.0% 59 0.0% 59 0.0% 12,000 0.2% 12,000 0.2% 0 0.0% 0 0.0%
load::Engines/PhpEngine.php 1 0.0% 58 0.0% 58 0.0% 59 0.0% 59 0.0% 9,080 0.1% 9,080 0.1% 0 0.0% 0 0.0%
preg_replace 1 0.0% 57 0.0% 57 0.0% 59 0.0% 59 0.0% 1,608 0.0% 1,608 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::popLoop 16 0.0% 55 0.0% 38 0.0% 62 0.0% 38 0.0% 1,728 0.0% 1,176 0.0% 0 0.0% 0 0.0%
load::View/Factory.php 1 0.0% 51 0.0% 51 0.0% 52 0.0% 52 0.0% 7,888 0.1% 7,888 0.1% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::mermaid 3 0.0% 49 0.0% 8 0.0% 51 0.0% 7 0.0% 1,936 0.0% 216 0.0% 0 0.0% 0 0.0%
load::Events/Dispatcher.php 1 0.0% 47 0.0% 47 0.0% 49 0.0% 49 0.0% 7,896 0.1% 7,896 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesAuthorizations.php 1 0.0% 47 0.0% 47 0.0% 49 0.0% 49 0.0% 10,096 0.1% 10,096 0.1% 0 0.0% 0 0.0%
Symfony\Component\Console\Output\StreamOutput::doWrite 2 0.0% 45 0.0% 18 0.0% 48 0.0% 13 0.0% 3,352 0.0% 936 0.0% 0 0.0% 0 0.0%
load::Concerns/CompilesIncludes.php 1 0.0% 45 0.0% 45 0.0% 46 0.0% 46 0.0% 9,696 0.1% 9,696 0.1% 0 0.0% 0 0.0%
load::Concerns/ManagesTranslations.php 1 0.0% 44 0.0% 44 0.0% 46 0.0% 46 0.0% 5,240 0.1% 5,240 0.1% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::codepenHelper 4 0.0% 42 0.0% 32 0.0% 43 0.0% 26 0.0% 4,520 0.1% 1,080 0.0% 0 0.0% 0 0.0%
load::Concerns/CompilesJson.php 1 0.0% 40 0.0% 40 0.0% 41 0.0% 41 0.0% 6,216 0.1% 6,216 0.1% 0 0.0% 0 0.0%
Symfony\Component\Console\Color::set 6 0.0% 39 0.0% 26 0.0% 41 0.0% 24 0.0% 6,824 0.1% 3,160 0.0% 1,144 0.0% 504 0.0%
load::view/ViewFinderInterface.php 1 0.0% 38 0.0% 38 0.0% 39 0.0% 39 0.0% 6,560 0.1% 6,560 0.1% 0 0.0% 0 0.0%
load::src/ContainerInterface.php 1 0.0% 36 0.0% 36 0.0% 37 0.0% 37 0.0% 4,552 0.1% 4,552 0.1% 0 0.0% 0 0.0%
Saaze\CollectionManager::Saaze\{closure} 2 0.0% 35 0.0% 25 0.0% 30 0.0% 18 0.0% 1,784 0.0% -1,048 -0.0% 0 0.0% 0 0.0%
Saaze\BuildCommand::humanSize 1 0.0% 35 0.0% 11 0.0% 35 0.0% 10 0.0% 2,968 0.0% 824 0.0% 0 0.0% 0 0.0%
value 32 0.0% 34 0.0% 34 0.0% 44 0.0% 44 0.0% 536 0.0% 536 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Color::unset 6 0.0% 32 0.0% 21 0.0% 37 0.0% 21 0.0% 5,992 0.1% 2,776 0.0% 640 0.0% 0 0.0%
filter_var 16 0.0% 32 0.0% 32 0.0% 41 0.0% 41 0.0% 1,064 0.0% 1,064 0.0% 0 0.0% 0 0.0%
load::Concerns/CompilesComments.php 1 0.0% 32 0.0% 32 0.0% 33 0.0% 33 0.0% 4,120 0.1% 4,120 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesErrors.php 1 0.0% 32 0.0% 32 0.0% 33 0.0% 33 0.0% 4,656 0.1% 4,656 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesInjections.php 1 0.0% 31 0.0% 31 0.0% 32 0.0% 32 0.0% 4,808 0.1% 4,808 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesTranslations.php 1 0.0% 30 0.0% 30 0.0% 31 0.0% 31 0.0% 5,888 0.1% 5,888 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesHelpers.php 1 0.0% 27 0.0% 27 0.0% 28 0.0% 28 0.0% 5,352 0.1% 5,352 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesStacks.php 1 0.0% 27 0.0% 27 0.0% 28 0.0% 28 0.0% 6,288 0.1% 6,288 0.1% 0 0.0% 0 0.0%
fwrite 2 0.0% 25 0.0% 25 0.0% 30 0.0% 30 0.0% 1,848 0.0% 1,848 0.0% 0 0.0% 0 0.0%
load::Compilers/CompilerInterface.php 1 0.0% 25 0.0% 25 0.0% 26 0.0% 26 0.0% 3,752 0.1% 3,752 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesRawPhp.php 1 0.0% 25 0.0% 25 0.0% 26 0.0% 26 0.0% 4,144 0.1% 4,144 0.1% 0 0.0% 0 0.0%
load::Support/Htmlable.php 1 0.0% 25 0.0% 25 0.0% 26 0.0% 26 0.0% 2,352 0.0% 2,352 0.0% 0 0.0% 0 0.0%
load::View/View.php 1 0.0% 25 0.0% 25 0.0% 25 0.0% 25 0.0% 3,808 0.1% 3,808 0.1% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\Input::getOption 1 0.0% 24 0.0% 16 0.0% 25 0.0% 9 0.0% 3,672 0.1% 760 0.0% 0 0.0% 0 0.0%
load::View/Engine.php 1 0.0% 21 0.0% 21 0.0% 22 0.0% 22 0.0% 2,768 0.0% 2,768 0.0% 0 0.0% 0 0.0%
Saaze\MarkdownContentParser::vimeo 1 0.0% 20 0.0% 3 0.0% 21 0.0% 3 0.0% 1,984 0.0% 608 0.0% 0 0.0% 0 0.0%
ceil 19 0.0% 16 0.0% 16 0.0% 30 0.0% 30 0.0% 1,064 0.0% 1,064 0.0% 0 0.0% 0 0.0%
load::Support/Renderable.php 1 0.0% 16 0.0% 16 0.0% 17 0.0% 17 0.0% 2,416 0.0% 2,416 0.0% 0 0.0% 0 0.0%
log 1 0.0% 16 0.0% 16 0.0% 16 0.0% 16 0.0% 536 0.0% 536 0.0% 0 0.0% 0 0.0%
sprintf 12 0.0% 13 0.0% 13 0.0% 16 0.0% 16 0.0% 4,944 0.1% 4,944 0.1% 1,280 0.0% 1,280 0.0%
basename 3 0.0% 10 0.0% 10 0.0% 11 0.0% 11 0.0% 648 0.0% 648 0.0% 0 0.0% 0 0.0%
number_format 1 0.0% 7 0.0% 7 0.0% 7 0.0% 7 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Saaze\BuildCommand::stopXhprof 1 0.0% 7 0.0% 4 0.0% 8 0.0% 4 0.0% 1,152 0.0% 600 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::createStyleFromString 4 0.0% 6 0.0% 6 0.0% 9 0.0% 9 0.0% 664 0.0% 664 0.0% 0 0.0% 0 0.0%
pow 1 0.0% 6 0.0% 6 0.0% 5 0.0% 5 0.0% 536 0.0% 536 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\InputDefinition::getOption 1 0.0% 5 0.0% 4 0.0% 6 0.0% 4 0.0% 1,328 0.0% 696 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatterStyleStack::push 2 0.0% 4 0.0% 4 0.0% 5 0.0% 5 0.0% 1,416 0.0% 1,416 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatterStyleStack::getCurrent 2 0.0% 4 0.0% 4 0.0% 4 0.0% 4 0.0% 664 0.0% 664 0.0% 0 0.0% 0 0.0%
is_iterable 2 0.0% 3 0.0% 3 0.0% 5 0.0% 5 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Output\Output::getVerbosity 2 0.0% 3 0.0% 3 0.0% 4 0.0% 4 0.0% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
strtr 3 0.0% 3 0.0% 3 0.0% 5 0.0% 5 0.0% 1,768 0.0% 1,768 0.0% 0 0.0% 0 0.0%
strtolower 3 0.0% 3 0.0% 3 0.0% 5 0.0% 5 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
xhprof_disable 1 0.0% 3 0.0% 3 0.0% 4 0.0% 4 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\InputDefinition::hasOption 2 0.0% 2 0.0% 2 0.0% 10 0.0% 10 0.0% 1,584 0.0% 1,584 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\InputOption::getDefault 1 0.0% 2 0.0% 2 0.0% 2 0.0% 2 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::isDecorated 2 0.0% 2 0.0% 2 0.0% 3 0.0% 3 0.0% 664 0.0% 664 0.0% 0 0.0% 0 0.0%
getenv 2 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
array_reverse 2 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 1,336 0.0% 1,336 0.0% 0 0.0% 0 0.0%
array_slice 2 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
fflush 2 0.0% 2 0.0% 2 0.0% 5 0.0% 5 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
memory_get_peak_usage 1 0.0% 1 0.0% 1 0.0% 1 0.0% 1 0.0% 528 0.0% 528 0.0% 0 0.0% 0 0.0%
floor 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 536 0.0% 536 0.0% 0 0.0% 0 0.0%
round 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 536 0.0% 536 0.0% 0 0.0% 0 0.0%

5. Original Saaze

The original Saaze was run with a subset of the Markdown files from above. Nevertheless, Saaze needs

$ time php saaze build                                      
Building static site in /home/klm/tmp/thdsaaze/build...
Finished creating 2 collections and 329 entries (8.73 secs / 11.23MB)
        real 8.78s
        user 8.47s
        sys 0
        swapped 0
        total space 0

leaving out "big" Markdown files. Running the process with XHProf enabled needs ~60s, i.e., almost 7-times more.

Below is the abridged output of XHProf for old, unmodified Saaze. All links have been dropped.

Run Report
Run #61646ee52f7db: XHProf Run (Namespace=saaze)

Overall Summary
Total Incl. Wall Time (microsec):59,704,089 microsecs
Total Incl. CPU (microsecs):59,568,519 microsecs
Total Incl. MemUse (bytes):3,359,272 bytes
Total Incl. PeakMemUse (bytes):10,173,792 bytes
Number of Function Calls:24,391,348



Sorted by Incl. Wall Time (microsec)


Function NameCallsCalls%Incl. Wall Time
(microsec)
IWall%Excl. Wall Time
(microsec)
EWall%Incl. CPU
(microsecs)
ICpu%Excl. CPU
(microsec)
ECPU%Incl.
MemUse
(bytes)
IMemUse%Excl.
MemUse
(bytes)
EMemUse%Incl.
PeakMemUse
(bytes)
IPeakMemUse%Excl.
PeakMemUse
(bytes)
EPeakMemUse%
main() 1 0.0% 59,704,089 100.0% 2,210 0.0% 59,568,519 100.0% 1,725 0.0% 3,359,272 100.0% -1,784,208 -53.1% 10,173,792 100.0% 0 0.0%
Saaze\Commands\BuildCommand::buildCollectionIndex 36 0.0% 57,254,514 95.9% 5,086 0.0% 57,130,411 95.9% 4,898 0.0% 4,347,272 129.4% -55,790,208 -1660.8% 6,039,528 59.4% 0 0.0%
Saaze\Templates\TemplateManager::renderCollection 36 0.0% 57,243,525 95.9% 1,382 0.0% 57,119,450 95.9% 1,143 0.0% 60,132,320 1790.0% -4,307,520 -128.2% 6,039,528 59.4% 0 0.0%
Saaze\Entries\EntryManager::getEntriesForTemplate 36 0.0% 57,120,204 95.7% 232 0.0% 56,996,674 95.7% 223 0.0% 114,733,672 3415.4% 728 0.0% 3,986,704 39.2% 0 0.0%
Saaze\Entries\EntryManager::Saaze\Entries\{closure} 99,115 0.4% 43,106,266 72.2% 437,132 0.7% 43,062,741 72.3% 386,207 0.6% 55,355,968 1647.9% 1,328 0.0% 2,225,272 21.9% 0 0.0%
Saaze\Entries\EntryManager::getEntryForTemplate 11,451 0.0% 42,294,837 70.8% 114,229 0.2% 42,229,395 70.9% 96,324 0.2% 51,806,888 1542.2% -39,629,488 -1179.7% 2,225,272 21.9% 0 0.0%
array_map 1,133 0.0% 41,127,763 68.9% 28,843 0.0% 41,062,506 68.9% 23,838 0.0% 56,619,184 1685.5% 1,113,920 33.2% 2,225,272 21.9% 0 0.0%
Saaze\Entries\Entry::content 22,902 0.1% 40,712,225 68.2% 124,230 0.2% 40,652,537 68.2% 109,260 0.2% 81,223,656 2417.9% -8,609,808 -256.3% 2,225,272 21.9% 0 0.0%
Saaze\Content\MarkdownContentParser::toHtml 22,902 0.1% 40,072,981 67.1% 129,258 0.2% 40,014,657 67.2% 112,643 0.2% 81,221,192 2417.8% -54,352 -1.6% 2,225,272 21.9% 0 0.0%
ParsedownExtra::text 22,902 0.1% 39,896,204 66.8% 95,716 0.2% 39,838,223 66.9% 91,064 0.2% 80,841,528 2406.5% -243,558,488 -7250.3% 1,589,080 15.6% 0 0.0%
Parsedown::text 22,902 0.1% 39,613,852 66.4% 222,601 0.4% 39,554,360 66.4% 195,395 0.3% 324,399,448 9656.8% -434,196,184 -12925.3% 1,589,080 15.6% 768 0.0%
Parsedown::lines 22,902 0.1% 39,223,970 65.7% 5,885,526 9.9% 39,164,968 65.7% 5,002,233 8.4% 429,234,776 12777.6% -2,059,865,672 -61318.8% 1,482,968 14.6% 36,304 0.4%
Parsedown::element 230,318 0.9% 25,506,662 42.7% 678,702 1.1% 25,518,258 42.8% 673,146 1.1% 167,138,600 4975.4% -107,242,264 -3192.4% 858,384 8.4% 6,576 0.1%
Parsedown::line 256,568 1.1% 21,742,227 36.4% 5,899,725 9.9% 21,767,475 36.5% 5,019,510 8.4% 285,305,272 8493.1% -498,715,064 -14845.9% 454,480 4.5% 58,816 0.6%
Saaze\Entries\Entry::excerpt 11,451 0.0% 20,683,382 34.6% 117,434 0.2% 20,655,087 34.7% 98,189 0.2% 51,120,184 1521.8% -46,238,656 -1376.4% 397,040 3.9% 0 0.0%
Saaze\Entries\EntryManager::getEntries 38 0.0% 16,483,924 27.6% 324 0.0% 16,423,980 27.6% 272 0.0% 60,531,248 1801.9% -368,880 -11.0% 3,538,984 34.8% 0 0.0%
Saaze\Entries\EntryManager::loadEntries 38 0.0% 14,338,375 24.0% 100,286 0.2% 14,281,387 24.0% 76,932 0.1% 61,827,384 1840.5% -96,578,176 -2875.0% 3,538,984 34.8% 0 0.0%
Saaze\Entries\EntryManager::loadEntry 11,451 0.0% 12,925,047 21.6% 109,369 0.2% 12,878,917 21.6% 93,151 0.2% 59,999,528 1786.1% 720,792 21.5% 3,538,984 34.8% 6,672 0.1%
DI\Container::make 11,453 0.0% 12,460,664 20.9% 413,530 0.7% 12,415,610 20.8% 358,359 0.6% 58,834,360 1751.4% -8,426,280 -250.8% 4,175,960 41.0% 0 0.0%
Saaze\Entries\Entry::__construct 11,451 0.0% 11,861,762 19.9% 53,261 0.1% 11,818,216 19.8% 48,003 0.1% 57,028,672 1697.6% -4,762,936 -141.8% 3,532,312 34.7% 0 0.0%
Saaze\Entries\EntryParser::parseEntry 11,451 0.0% 11,746,268 19.7% 90,950 0.2% 11,704,133 19.6% 75,002 0.1% 61,791,040 1839.4% -44,395,608 -1321.6% 3,532,312 34.7% 0 0.0%
Spatie\YamlFrontMatter\YamlFrontMatter::parse 11,451 0.0% 11,433,576 19.2% 157,169 0.3% 11,392,517 19.1% 128,586 0.2% 65,093,608 1937.7% -8,976,656 -267.2% 533,920 5.2% 71,984 0.7%
Symfony\Component\Yaml\Yaml::parse 11,453 0.0% 11,080,144 18.6% 32,429 0.1% 11,040,756 18.5% 31,942 0.1% 22,296,136 663.7% 2,512,616 74.8% 525,400 5.2% 0 0.0%
Symfony\Component\Yaml\Parser::parse 11,453 0.0% 11,046,244 18.5% 73,930 0.1% 11,007,341 18.5% 65,098 0.1% 19,496,880 580.4% -19,258,280 -573.3% 74,968 0.7% 0 0.0%
Symfony\Component\Yaml\Parser::doParse 11,453 0.0% 10,931,612 18.3% 1,426,072 2.4% 10,893,367 18.3% 1,134,114 1.9% 38,754,024 1153.6% -6,019,416 -179.2% 74,968 0.7% 0 0.0%
Parsedown::element@1 313,390 1.3% 10,705,785 17.9% 1,225,386 2.1% 10,772,657 18.1% 1,183,197 2.0% 126,943,496 3778.9% -10,199,936 -303.6% 663,152 6.5% 209,864 2.1%
Parsedown::elements 13,230 0.1% 6,637,225 11.1% 114,256 0.2% 6,630,856 11.1% 100,927 0.2% 9,304,552 277.0% -24,047,408 -715.9% 258,864 2.5% 256 0.0%
Symfony\Component\Yaml\Parser::parseValue 71,142 0.3% 6,254,911 10.5% 624,039 1.0% 6,253,571 10.5% 525,637 0.9% 14,405,312 428.8% -5,330,744 -158.7% 45,944 0.5% 0 0.0%
Parsedown::li 58,450 0.2% 5,633,383 9.4% 552,419 0.9% 5,638,518 9.5% 476,221 0.8% 18,061,520 537.7% -117,424,320 -3495.5% 253,952 2.5% 336 0.0%
ParsedownExtra::unmarkedText 981,278 4.0% 5,103,888 8.5% 2,086,948 3.5% 5,311,100 8.9% 2,064,657 3.5% 2,594,024 77.2% 1,720 0.1% 44,072 0.4% 40,504 0.4%
Parsedown::lines@1 59,500 0.2% 4,976,437 8.3% 611,662 1.0% 4,983,643 8.4% 526,852 0.9% 110,956,768 3303.0% 24,986,448 743.8% 289,728 2.8% 2,256 0.0%
Parsedown::element@2 72,660 0.3% 4,457,814 7.5% 203,345 0.3% 4,472,073 7.5% 205,404 0.3% 36,110,512 1075.0% -26,902,024 -800.8% 261,192 2.6% 15,408 0.2%
Symfony\Component\Yaml\Inline::parseScalar 184,601 0.8% 4,017,375 6.7% 984,910 1.6% 4,062,000 6.8% 869,604 1.5% 17,126,160 509.8% -53,073,048 -1579.9% 45,944 0.5% 0 0.0%
Symfony\Component\Yaml\Inline::parse 71,142 0.3% 3,937,801 6.6% 766,057 1.3% 3,945,364 6.6% 628,132 1.1% 14,555,000 433.3% 831,184 24.7% 45,944 0.5% 0 0.0%
preg_match 2,119,909 8.7% 3,140,913 5.3% 3,140,913 5.3% 3,685,642 6.2% 3,685,642 6.2% 323,904,152 9642.1% 323,904,152 9642.1% 76,272 0.7% 76,272 0.7%
Parsedown::unmarkedText 981,278 4.0% 3,016,940 5.1% 1,978,515 3.3% 3,246,443 5.4% 1,977,701 3.3% 2,592,304 77.2% 616 0.0% 3,568 0.0% 0 0.0%
ParsedownExtra::inlineLink 174,160 0.7% 2,724,096 4.6% 820,568 1.4% 2,761,797 4.6% 737,283 1.2% 242,789,688 7227.4% -122,449,936 -3645.1% 212,864 2.1% 7,600 0.1%
Parsedown::line@1 150,500 0.6% 2,186,432 3.7% 820,652 1.4% 2,222,513 3.7% 719,225 1.2% 18,389,856 547.4% 5,813,984 173.1% 61,664 0.6% 13,808 0.1%
Saaze\Entries\EntryManager::sortEntries 38 0.0% 2,145,225 3.6% 373 0.0% 2,142,321 3.6% 323 0.0% -927,256 -27.6% 744 0.0% 0 0.0% 0 0.0%
usort 38 0.0% 2,142,264 3.6% 123,874 0.2% 2,139,405 3.6% 103,269 0.2% -930,352 -27.7% -932,816 -27.8% 0 0.0% 0 0.0%
substr 2,456,377 10.1% 2,132,293 3.6% 2,132,293 3.6% 2,686,262 4.5% 2,686,262 4.5% 277,635,816 8264.8% 277,635,816 8264.8% 39,152 0.4% 39,152 0.4%
Parsedown::blockFencedCodeContinue 604,030 2.5% 2,089,228 3.5% 1,536,415 2.6% 2,228,146 3.7% 1,524,873 2.6% 1,759,429,448 52375.3% 1,733,269,032 51596.6% 260,792 2.6% 252,744 2.5%
Saaze\Commands\BuildCommand::buildEntry 329 0.0% 1,901,735 3.2% 8,836 0.0% 1,893,228 3.2% 6,593 0.0% -1,964,128 -58.5% -3,672,392 -109.3% 1,359,024 13.4% 0 0.0%
Saaze\Templates\TemplateManager::renderEntry 329 0.0% 1,836,626 3.1% 9,498 0.0% 1,828,395 3.1% 7,370 0.0% 1,594,056 47.5% -3,633,280 -108.2% 1,359,024 13.4% 0 0.0%
Symfony\Component\Yaml\Inline::parseSequence 20,370 0.1% 1,835,084 3.1% 256,385 0.4% 1,835,499 3.1% 221,866 0.4% 10,322,528 307.3% 5,137,872 152.9% 3,056 0.0% 0 0.0%
Saaze\Entries\Entry::data 210,668 0.9% 1,793,922 3.0% 444,178 0.7% 1,850,160 3.1% 455,860 0.8% 3,552 0.1% 2,448 0.1% 0 0.0% 0 0.0%
strpos 2,064,974 8.5% 1,770,084 3.0% 1,770,084 3.0% 2,214,522 3.7% 2,214,522 3.7% 11,832 0.4% 11,832 0.4% 1,352 0.0% 1,352 0.0%
Parsedown::inlineLink 174,160 0.7% 1,604,456 2.7% 974,019 1.6% 1,650,081 2.8% 882,958 1.5% 330,220,440 9830.1% 191,814,184 5710.0% 205,264 2.0% 141,176 1.4%
Symfony\Component\Yaml\Inline::parseQuotedScalar 97,020 0.4% 1,540,646 2.6% 668,131 1.1% 1,568,656 2.6% 575,938 1.0% 56,018,464 1667.6% -28,253,552 -841.1% 45,944 0.5% 0 0.0%
Parsedown::escape 404,250 1.7% 1,471,992 2.5% 830,991 1.4% 1,562,336 2.6% 824,437 1.4% 111,592,888 3321.9% 2,272 0.1% 146,360 1.4% 0 0.0%
Adbar\Dot::get 211,284 0.9% 1,432,053 2.4% 677,688 1.1% 1,477,145 2.5% 640,593 1.1% 9,832 0.3% -27,152 -0.8% 0 0.0% 0 0.0%
preg_replace 1,192,957 4.9% 1,418,148 2.4% 1,418,148 2.4% 1,708,100 2.9% 1,708,100 2.9% 2,845,784 84.7% 2,845,784 84.7% 3,568 0.0% 3,568 0.0%
FilterIterator::next 11,453 0.0% 1,266,249 2.1% 97,799 0.2% 1,265,536 2.1% 82,551 0.1% 95,558,184 2844.6% 1,472 0.0% 0 0.0% 0 0.0%
Parsedown::element@3 66,500 0.3% 1,253,984 2.1% 248,678 0.4% 1,269,519 2.1% 240,046 0.4% 20,778,616 618.5% 2,033,008 60.5% 59,008 0.6% 7,392 0.1%
Symfony\Component\Yaml\Parser::lexInlineSequence 20,370 0.1% 1,164,259 2.0% 48,277 0.1% 1,166,375 2.0% 47,634 0.1% 1,308,616 39.0% 664 0.0% 0 0.0% 0 0.0%
strpbrk 981,278 4.0% 1,119,701 1.9% 1,119,701 1.9% 1,336,663 2.2% 1,336,663 2.2% 125,070,304 3723.1% 125,070,304 3723.1% 21,880 0.2% 21,880 0.2%
Symfony\Component\Yaml\Parser::lexInlineStructure 20,370 0.1% 1,115,982 1.9% 333,345 0.6% 1,118,741 1.9% 274,712 0.5% 1,307,952 38.9% -3,323,992 -98.9% 0 0.0% 0 0.0%
Saaze\Entries\Entry::url 11,451 0.0% 1,009,104 1.7% 137,606 0.2% 1,011,771 1.7% 114,350 0.2% 1,991,368 59.3% -5,240,904 -156.0% 0 0.0% 0 0.0%
FilterIterator::next@1 11,453 0.0% 1,008,401 1.7% 95,661 0.2% 1,008,160 1.7% 79,321 0.1% 95,554,472 2844.5% 872 0.0% 0 0.0% 0 0.0%
chop 1,178,964 4.8% 980,368 1.6% 980,368 1.6% 1,200,872 2.0% 1,200,872 2.0% 1,563,920 46.6% 1,563,920 46.6% 912 0.0% 912 0.0%
Symfony\Component\Yaml\Inline::evaluateScalar 87,581 0.4% 977,128 1.6% 614,352 1.0% 1,001,987 1.7% 518,097 0.9% 6,291,656 187.3% 2,275,976 67.8% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::preg_match 255,751 1.0% 952,252 1.6% 553,768 0.9% 1,034,019 1.7% 563,387 0.9% 62,375,504 1856.8% 3,208 0.1% 160 0.0% 0 0.0%
Adbar\Dot::exists 303,044 1.2% 849,469 1.4% 593,806 1.0% 909,889 1.5% 588,644 1.0% 1,672 0.0% 1,136 0.0% 0 0.0% 0 0.0%
Parsedown::blockMarkupContinue 23,170 0.1% 844,979 1.4% 79,609 0.1% 849,249 1.4% 76,334 0.1% 27,039,256 804.9% 24,829,840 739.1% 6,256 0.1% 6,256 0.1%
Saaze\Entries\Entry::slug 35,011 0.1% 823,626 1.4% 357,493 0.6% 832,016 1.4% 297,827 0.5% 2,859,088 85.1% -11,439,848 -340.5% 0 0.0% 0 0.0%
FilterIterator::next@2 11,453 0.0% 749,923 1.3% 148,654 0.2% 750,162 1.3% 121,988 0.2% 95,551,344 2844.4% -3,432,216 -102.2% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::lexInlineQuotedString 97,020 0.4% 731,775 1.2% 444,159 0.7% 767,317 1.3% 446,105 0.7% 8,499,648 253.0% 8,499,016 253.0% 0 0.0% 0 0.0%
ParsedownExtra::blockMarkupComplete 4,760 0.0% 713,576 1.2% 16,434 0.0% 713,506 1.2% 16,320 0.0% 4,461,840 132.8% -5,495,784 -163.6% 6,640 0.1% 0 0.0%
ParsedownExtra::processTag 4,760 0.0% 697,142 1.2% 117,614 0.2% 697,186 1.2% 100,983 0.2% 9,957,624 296.4% 104,872 3.1% 6,640 0.1% 232 0.0%
Symfony\Component\Yaml\Parser::isCurrentLineEmpty 82,607 0.3% 650,014 1.1% 307,872 0.5% 672,812 1.1% 270,533 0.5% 13,184 0.4% 10,480 0.3% 0 0.0% 0 0.0%
htmlspecialchars 407,815 1.7% 645,251 1.1% 645,251 1.1% 743,068 1.2% 743,068 1.2% 112,166,368 3339.0% 112,166,368 3339.0% 146,360 1.4% 146,360 1.4%
Saaze\Templates\BladeTemplateParser::render 365 0.0% 642,819 1.1% 4,209 0.0% 639,934 1.1% 3,378 0.0% 9,116,280 271.4% 51,896 1.5% 3,113,592 30.6% 0 0.0%
Adbar\Dot::has 45,804 0.2% 632,885 1.1% 288,912 0.5% 645,384 1.1% 259,007 0.4% 17,225,744 512.8% 1,848 0.1% 0 0.0% 0 0.0%
Parsedown::elements@1 2,240 0.0% 562,384 0.9% 14,434 0.0% 562,075 0.9% 12,856 0.0% 849,928 25.3% -3,193,008 -95.1% 14,080 0.1% 64 0.0%
Symfony\Component\Yaml\Parser::isCurrentLineBlank 179,631 0.7% 539,176 0.9% 388,073 0.6% 601,497 1.0% 400,699 0.7% 2,464 0.1% 1,576 0.0% 0 0.0% 0 0.0%
Parsedown::inlineImage 28,910 0.1% 523,352 0.9% 122,227 0.2% 532,288 0.9% 118,609 0.2% 72,100,072 2146.3% 35,074,032 1044.1% 35,120 0.3% 2,744 0.0%
Parsedown::elements@2 7,700 0.0% 510,447 0.9% 41,131 0.1% 511,563 0.9% 37,033 0.1% 872,392 26.0% -9,121,224 -271.5% 0 0.0% 0 0.0%
Parsedown::inlineCode 80,990 0.3% 493,442 0.8% 307,372 0.5% 513,216 0.9% 287,115 0.5% 100,020,656 2977.5% 63,234,240 1882.4% 47,208 0.5% 38,312 0.4%
ParsedownExtra::inlineFootnoteMarker 149,100 0.6% 464,417 0.8% 319,543 0.5% 501,673 0.8% 314,980 0.5% 13,122,568 390.6% 4,772,384 142.1% 3,152 0.0% 1,136 0.0%
trim 506,882 2.1% 444,532 0.7% 444,532 0.7% 580,952 1.0% 580,952 1.0% 173,292,088 5158.6% 173,292,088 5158.6% 1,592 0.0% 1,592 0.0%
ParsedownExtra::processTag@1 490 0.0% 377,918 0.6% 23,503 0.0% 377,070 0.6% 19,569 0.0% 738,232 22.0% -1,203,848 -35.8% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::consumeWhitespaces 125,370 0.5% 376,702 0.6% 270,593 0.5% 416,466 0.7% 276,170 0.5% 1,232 0.0% 664 0.0% 0 0.0% 0 0.0%
Parsedown::blockFencedCode 52,850 0.2% 361,288 0.6% 233,105 0.4% 374,834 0.6% 212,813 0.4% 85,738,520 2552.3% 65,647,408 1954.2% 70,360 0.7% 60,024 0.6%
Symfony\Component\Yaml\Unescaper::unescapeDoubleQuotedString 97,020 0.4% 357,218 0.6% 238,933 0.4% 390,537 0.7% 237,766 0.4% 31,069,120 924.9% 31,055,384 924.5% 3,064 0.0% 2,896 0.0%
Jenssegers\Blade\Blade::render 365 0.0% 334,390 0.6% 1,628 0.0% 332,926 0.6% 1,472 0.0% 3,279,288 97.6% -57,688 -1.7% 1,896,464 18.6% 0 0.0%
Parsedown::blockCode 346,868 1.4% 326,957 0.5% 326,957 0.5% 406,978 0.7% 406,978 0.7% 1,640 0.0% 1,640 0.0% 552 0.0% 552 0.0%
FilterIterator::next@3 11,840 0.0% 325,916 0.5% 115,632 0.2% 328,689 0.6% 94,189 0.2% 92,781,608 2762.0% -5,390,256 -160.5% 0 0.0% 0 0.0%
ParsedownExtra::processTag@2 1,960 0.0% 320,692 0.5% 69,832 0.1% 320,410 0.5% 58,469 0.1% 1,210,240 36.0% -2,084,168 -62.0% 0 0.0% 0 0.0%
array_key_exists 372,524 1.5% 314,791 0.5% 314,791 0.5% 397,333 0.7% 397,333 0.7% 4,592 0.1% 4,592 0.1% 0 0.0% 0 0.0%
Jenssegers\Blade\Blade::__construct 365 0.0% 297,238 0.5% 4,092 0.0% 296,011 0.5% 3,357 0.0% 5,699,064 169.7% 242,040 7.2% 1,155,680 11.4% 0 0.0%
Parsedown::inlineEscapeSequence 87,080 0.4% 266,147 0.4% 183,808 0.3% 285,624 0.5% 182,645 0.3% 2,844,832 84.7% 2,844,280 84.7% 552 0.0% 552 0.0%
Illuminate\View\View::render 365 0.0% 255,995 0.4% 1,952 0.0% 254,850 0.4% 1,661 0.0% 2,648,912 78.9% 760 0.0% 1,796,176 17.7% 0 0.0%
Parsedown::inlineMarkup 44,870 0.2% 252,093 0.4% 165,028 0.3% 263,537 0.4% 154,309 0.3% 34,507,456 1027.2% 17,116,640 509.5% 3,880 0.0% 2,520 0.0%
Illuminate\Container\Container::resolve 1,460 0.0% 251,240 0.4% 18,554 0.0% 250,734 0.4% 14,794 0.0% 3,072,304 91.5% 139,112 4.1% 883,336 8.7% 0 0.0%
Illuminate\View\View::renderContents 365 0.0% 249,585 0.4% 2,612 0.0% 248,498 0.4% 2,194 0.0% 4,532,128 134.9% 824 0.0% 1,796,176 17.7% 0 0.0%
Parsedown::blockListContinue 60,130 0.2% 247,154 0.4% 173,256 0.3% 261,812 0.4% 172,295 0.3% 128,193,328 3816.1% 97,225,240 2894.2% 124,800 1.2% 121,080 1.2%
Illuminate\Container\Container::get 730 0.0% 239,149 0.4% 1,795 0.0% 238,317 0.4% 1,716 0.0% 3,072,368 91.5% 648 0.0% 883,336 8.7% 0 0.0%
Illuminate\View\View::getContents 365 0.0% 235,174 0.4% 1,591 0.0% 234,132 0.4% 1,436 0.0% 4,469,792 133.1% -136,528 -4.1% 1,770,392 17.4% 0 0.0%
Illuminate\View\Engines\CompilerEngine::get 365 0.0% 231,193 0.4% 2,909 0.0% 230,166 0.4% 2,341 0.0% 4,467,264 133.0% 56,320 1.7% 1,770,392 17.4% 0 0.0%
in_array 251,895 1.0% 228,230 0.4% 228,230 0.4% 292,558 0.5% 292,558 0.5% 5,368 0.2% 5,368 0.2% 0 0.0% 0 0.0%
Parsedown::paragraph 231,508 0.9% 226,741 0.4% 226,741 0.4% 284,172 0.5% 284,172 0.5% 174,095,656 5182.5% 174,095,656 5182.5% 35,720 0.4% 35,720 0.4%
Parsedown::inlineUrlTag 44,870 0.2% 226,480 0.4% 147,476 0.2% 237,096 0.4% 136,195 0.2% 3,858,496 114.9% 1,403,472 41.8% 88 0.0% 32 0.0%
Parsedown::inlineEmailTag 44,870 0.2% 223,337 0.4% 143,552 0.2% 234,099 0.4% 132,283 0.2% 3,858,496 114.9% 1,403,472 41.8% 0 0.0% 0 0.0%
is_null 276,489 1.1% 222,611 0.4% 222,611 0.4% 284,206 0.5% 284,206 0.5% 10,864 0.3% 10,864 0.3% 0 0.0% 0 0.0%
rtrim 263,906 1.1% 219,474 0.4% 219,474 0.4% 290,336 0.5% 290,336 0.5% 5,072 0.2% 5,072 0.2% 0 0.0% 0 0.0%
Illuminate\View\Engines\PhpEngine::evaluatePath 365 0.0% 215,174 0.4% 3,087 0.0% 214,277 0.4% 2,469 0.0% 4,309,576 128.3% -2,263,144 -67.4% 1,770,392 17.4% 256 0.0%
Parsedown::isBlockContinuable 66,360 0.3% 212,527 0.4% 148,421 0.2% 229,267 0.4% 143,976 0.2% 1,720 0.1% 1,168 0.0% 584 0.0% 440 0.0%
Illuminate\View\ViewServiceProvider::Illuminate\View\{closure} 1,095 0.0% 210,096 0.4% 10,734 0.0% 209,652 0.4% 9,087 0.0% 2,932,048 87.3% 41,408 1.2% 883,336 8.7% 43,440 0.4%
Illuminate\Filesystem\Filesystem::getRequire 365 0.0% 210,064 0.4% 1,927 0.0% 209,210 0.4% 1,698 0.0% 2,099,552 62.5% -10,952 -0.3% 1,757,920 17.3% 952 0.0%
Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure} 365 0.0% 206,851 0.3% 16,146 0.0% 206,039 0.3% 13,070 0.0% 2,109,304 62.8% -5,326,360 -158.6% 1,756,968 17.3% 288 0.0%
file_get_contents 11,453 0.0% 200,382 0.3% 200,382 0.3% 206,535 0.3% 206,535 0.3% 41,085,344 1223.0% 41,085,344 1223.0% 2,998,392 29.5% 2,998,392 29.5%
Parsedown::isBlockCompletable 64,470 0.3% 198,185 0.3% 138,629 0.2% 214,359 0.4% 136,550 0.2% 1,720 0.1% 1,168 0.0% 0 0.0% 0 0.0%
explode 135,889 0.6% 195,860 0.3% 195,860 0.3% 230,938 0.4% 230,938 0.4% 220,354,408 6559.6% 220,354,408 6559.6% 107,632 1.1% 107,632 1.1%
Illuminate\Container\Container::build 730 0.0% 195,571 0.3% 3,111 0.0% 194,983 0.3% 2,787 0.0% 2,892,592 86.1% 712 0.0% 883,336 8.7% 0 0.0%
Parsedown::inlineEmphasis 45,710 0.2% 192,198 0.3% 114,689 0.2% 203,840 0.3% 114,182 0.2% 22,128,552 658.7% 13,097,328 389.9% 7,800 0.1% 6,248 0.1%
ParsedownExtra::processTag@3 5,530 0.0% 187,083 0.3% 98,063 0.2% 188,146 0.3% 82,615 0.1% 2,161,608 64.3% 733,128 21.8% 0 0.0% 0 0.0%
Illuminate\Container\Container::offsetGet 2,555 0.0% 182,111 0.3% 5,766 0.0% 182,271 0.3% 5,813 0.0% 1,742,808 51.9% 696 0.0% 309,448 3.0% 0 0.0%
Illuminate\Container\Container::make 2,555 0.0% 176,345 0.3% 6,114 0.0% 176,458 0.3% 5,945 0.0% 1,742,112 51.9% 712 0.0% 309,448 3.0% 0 0.0%
strtolower 202,594 0.8% 170,900 0.3% 170,900 0.3% 229,147 0.4% 229,147 0.4% 331,184 9.9% 331,184 9.9% 0 0.0% 0 0.0%
str_replace 135,842 0.6% 169,329 0.3% 169,329 0.3% 206,876 0.3% 206,876 0.3% 10,616,528 316.0% 10,616,528 316.0% 2,136 0.0% 2,136 0.0%
Symfony\Component\Yaml\Inline::initialize 142,286 0.6% 159,166 0.3% 159,166 0.3% 209,473 0.4% 209,473 0.4% 1,752 0.1% 1,752 0.1% 0 0.0% 0 0.0%
Saaze\Collections\Collection::slug 35,777 0.1% 158,414 0.3% 77,255 0.1% 169,369 0.3% 76,385 0.1% 1,148,400 34.2% 2,984 0.1% 0 0.0% 0 0.0%
Illuminate\Container\Container::resolve@1 1,825 0.0% 156,345 0.3% 25,449 0.0% 156,380 0.3% 19,769 0.0% 1,740,816 51.8% 255,328 7.6% 309,448 3.0% 0 0.0%
Parsedown::blockMarkup 13,790 0.1% 152,386 0.3% 90,433 0.2% 155,738 0.3% 78,533 0.1% 9,041,264 269.1% 2,232,760 66.5% 4,856 0.0% 1,240 0.0%
DOMDocument::loadHTML 12,740 0.1% 146,972 0.2% 146,972 0.2% 151,700 0.3% 151,700 0.3% 2,208 0.1% 2,208 0.1% 0 0.0% 0 0.0%
Saaze\Collections\Collection::entryRoute 12,111 0.0% 146,873 0.2% 28,337 0.0% 151,068 0.3% 28,278 0.0% 4,840 0.1% 1,848 0.1% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\FilenameFilterIterator::accept 11,453 0.0% 135,504 0.2% 65,994 0.1% 139,622 0.2% 54,080 0.1% 4,288 0.1% -913,408 -27.2% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\PathFilterIterator::accept 11,453 0.0% 132,480 0.2% 67,701 0.1% 136,317 0.2% 55,497 0.1% 3,256 0.1% 1,360 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\ExcludeDirectoryFilterIterator::hasChildren 11,840 0.0% 131,683 0.2% 33,042 0.1% 136,018 0.2% 30,627 0.1% 7,440 0.2% 2,528 0.1% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::cleanup 11,455 0.0% 131,260 0.2% 76,993 0.1% 135,075 0.2% 66,672 0.1% 369,056 11.0% 367,856 11.0% 0 0.0% 0 0.0%
content_path 35,050 0.1% 130,401 0.2% 101,099 0.2% 140,247 0.2% 101,178 0.2% 7,208 0.2% 2,328 0.1% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\RecursiveDirectoryIterator::current 11,840 0.0% 128,136 0.2% 68,325 0.1% 132,975 0.2% 62,312 0.1% 100,477,216 2991.0% 97,812,936 2911.7% 25,512 0.3% 0 0.0%
Illuminate\View\Factory::make 730 0.0% 125,359 0.2% 7,690 0.0% 125,259 0.2% 6,394 0.0% 793,152 23.6% 1,552 0.0% 100,288 1.0% 0 0.0%
Symfony\Component\Yaml\Inline::parseTag 133,827 0.5% 124,149 0.2% 124,149 0.2% 167,623 0.3% 167,623 0.3% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
Saaze\Collections\Collection::data 12,761 0.1% 124,032 0.2% 30,543 0.1% 128,557 0.2% 30,607 0.1% 7,712 0.2% -2,120 -0.1% 0 0.0% 0 0.0%
method_exists 130,830 0.5% 123,662 0.2% 123,662 0.2% 163,100 0.3% 163,100 0.3% 1,104 0.0% 1,104 0.0% 144 0.0% 144 0.0%
Parsedown::blockList 20,020 0.1% 122,538 0.2% 81,745 0.1% 127,540 0.2% 77,689 0.1% 33,124,760 986.1% 24,063,952 716.3% 33,672 0.3% 27,368 0.3%
preg_replace_callback 97,020 0.4% 118,285 0.2% 116,877 0.2% 152,771 0.3% 151,241 0.3% 13,736 0.4% 12,440 0.4% 168 0.0% 0 0.0%
Parsedown::blockTableContinue 7,630 0.0% 112,732 0.2% 68,631 0.1% 114,669 0.2% 59,971 0.1% 35,234,800 1048.9% 25,967,944 773.0% 29,488 0.3% 28,976 0.3%
preg_split 11,451 0.0% 110,650 0.2% 110,650 0.2% 114,423 0.2% 114,423 0.2% 44,496,288 1324.6% 44,496,288 1324.6% 413,552 4.1% 413,552 4.1%
strspn 125,370 0.5% 106,109 0.2% 106,109 0.2% 140,296 0.2% 140,296 0.2% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
RecursiveDirectoryIterator::hasChildren 12,580 0.1% 103,266 0.2% 103,266 0.2% 110,260 0.2% 110,260 0.2% 267,240 8.0% 267,240 8.0% 1,872 0.0% 1,872 0.0%
Symfony\Component\Yaml\Parser::moveToNextLine 99,046 0.4% 103,148 0.2% 103,148 0.2% 140,333 0.2% 140,333 0.2% 2,984 0.1% 2,984 0.1% 0 0.0% 0 0.0%
ltrim 110,260 0.5% 96,888 0.2% 96,888 0.2% 129,066 0.2% 129,066 0.2% 5,138,984 153.0% 5,138,984 153.0% 0 0.0% 0 0.0%
Parsedown::inlineSpecialCharacter 51,450 0.2% 95,700 0.2% 80,354 0.1% 109,718 0.2% 89,974 0.2% 14,681,592 437.0% 14,681,008 437.0% 1,856 0.0% 1,856 0.0%
Symfony\Component\Finder\Iterator\MultiplePcreFilterIterator::isAccepted 22,906 0.1% 95,131 0.2% 62,445 0.1% 106,779 0.2% 65,193 0.1% 2,360 0.1% 1,360 0.0% 0 0.0% 0 0.0%
Parsedown::inlineUrl 82,600 0.3% 94,052 0.2% 91,971 0.2% 118,389 0.2% 116,038 0.2% 1,409,560 42.0% 815,392 24.3% 4,728 0.0% 4,160 0.0%
Parsedown::blockReference 26,880 0.1% 93,744 0.2% 56,191 0.1% 101,095 0.2% 55,992 0.1% 2,368,296 70.5% 862,448 25.7% 552 0.0% 552 0.0%
DOMDocument::saveHTML 41,580 0.2% 91,564 0.2% 91,564 0.2% 103,032 0.2% 103,032 0.2% 4,461,488 132.8% 4,461,488 132.8% 944 0.0% 944 0.0%
Symfony\Component\Yaml\Parser::isCurrentLineComment 82,613 0.3% 90,614 0.2% 90,602 0.2% 122,028 0.2% 122,015 0.2% 2,912 0.1% 1,864 0.1% 0 0.0% 0 0.0%
strip_tags 11,451 0.0% 89,485 0.1% 89,485 0.1% 93,296 0.2% 93,296 0.2% 42,900,600 1277.1% 42,900,600 1277.1% 0 0.0% 0 0.0%
Illuminate\View\View::render@1 365 0.0% 87,634 0.1% 2,262 0.0% 87,381 0.1% 1,944 0.0% 2,316,896 69.0% 792 0.0% 1,614,192 15.9% 0 0.0%
mb_strlen 95,760 0.4% 85,580 0.1% 85,580 0.1% 104,453 0.2% 104,453 0.2% 528 0.0% 528 0.0% 0 0.0% 0 0.0%
Illuminate\View\View::renderContents@1 365 0.0% 83,777 0.1% 2,917 0.0% 83,502 0.1% 2,327 0.0% 2,314,304 68.9% 824 0.0% 1,614,192 15.9% 0 0.0%
ParsedownExtra::blockFootnote 25,970 0.1% 83,751 0.1% 56,933 0.1% 91,338 0.2% 56,358 0.1% 2,287,664 68.1% 832,760 24.8% 1,200 0.0% 776 0.0%
Symfony\Component\Yaml\Parser::getRealCurrentLineNb 87,585 0.4% 82,500 0.1% 82,500 0.1% 114,989 0.2% 114,989 0.2% 1,800 0.1% 1,800 0.1% 0 0.0% 0 0.0%
str_repeat 95,760 0.4% 81,406 0.1% 81,406 0.1% 99,853 0.2% 99,853 0.2% 3,830,928 114.0% 3,830,928 114.0% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::getLineTag 82,597 0.3% 81,269 0.1% 81,269 0.1% 108,851 0.2% 108,851 0.2% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
basename 35,777 0.1% 81,159 0.1% 81,159 0.1% 92,984 0.2% 92,984 0.2% 1,145,416 34.1% 1,145,416 34.1% 0 0.0% 0 0.0%
Illuminate\Container\Container::build@1 1,095 0.0% 80,958 0.1% 4,542 0.0% 81,151 0.1% 4,007 0.0% 1,475,488 43.9% 776 0.0% 309,448 3.0% 0 0.0%
Jenssegers\Blade\Blade::make 365 0.0% 76,767 0.1% 1,010 0.0% 76,604 0.1% 997 0.0% 688,064 20.5% 632 0.0% 100,288 1.0% 0 0.0%
Illuminate\View\ViewServiceProvider::Illuminate\View\{closure}@1 1,095 0.0% 74,772 0.1% 7,946 0.0% 75,046 0.1% 6,714 0.0% 1,350,352 40.2% 28,744 0.9% 389,128 3.8% 0 0.0%
Symfony\Component\Finder\Iterator\FileTypeFilterIterator::accept 11,840 0.0% 74,555 0.1% 51,882 0.1% 79,333 0.1% 46,945 0.1% 2,512 0.1% 1,328 0.0% 0 0.0% 0 0.0%
ini_get 82,595 0.3% 72,449 0.1% 72,449 0.1% 96,358 0.2% 96,358 0.2% 1,104 0.0% 1,104 0.0% 0 0.0% 0 0.0%
Illuminate\View\View::getContents@1 365 0.0% 69,158 0.1% 1,682 0.0% 68,985 0.1% 1,504 0.0% 2,294,208 68.3% -148,048 -4.4% 1,614,192 15.9% 0 0.0%
file_exists 13,278 0.1% 67,013 0.1% 67,013 0.1% 72,511 0.1% 72,511 0.1% 2,240 0.1% 2,240 0.1% 0 0.0% 0 0.0%
IteratorIterator::current 80,949 0.3% 66,045 0.1% 66,045 0.1% 97,513 0.2% 97,513 0.2% 7,368 0.2% 7,368 0.2% 0 0.0% 0 0.0%
Illuminate\View\Engines\CompilerEngine::get@1 365 0.0% 65,146 0.1% 2,948 0.0% 64,973 0.1% 2,413 0.0% 2,292,928 68.3% -69,240 -2.1% 1,614,192 15.9% 0 0.0%
Parsedown::element@4 4,620 0.0% 62,325 0.1% 16,292 0.0% 63,531 0.1% 15,812 0.0% 923,664 27.5% 289,176 8.6% 6,096 0.1% 2,776 0.0%
Adbar\Dot::__construct 11,453 0.0% 62,245 0.1% 28,139 0.0% 66,094 0.1% 27,676 0.0% 2,352 0.1% 1,200 0.0% 0 0.0% 0 0.0%
Saaze\Commands\BuildCommand::clearBuildDirectory 1 0.0% 61,939 0.1% 12,750 0.0% 61,395 0.1% 9,733 0.0% 32,736 1.0% -9,548,776 -284.3% 67,864 0.7% 9,336 0.1%
is_numeric 71,167 0.3% 58,622 0.1% 58,622 0.1% 78,711 0.1% 78,711 0.1% 1,152 0.0% 1,152 0.0% 0 0.0% 0 0.0%
is_array 71,094 0.3% 57,673 0.1% 57,673 0.1% 77,297 0.1% 77,297 0.1% 6,912 0.2% 6,912 0.2% 0 0.0% 0 0.0%
mb_convert_encoding 12,740 0.1% 57,414 0.1% 57,414 0.1% 61,744 0.1% 61,744 0.1% 3,939,568 117.3% 3,939,568 117.3% 3,328 0.0% 3,328 0.0%
Parsedown::blockFencedCodeComplete 45,010 0.2% 53,685 0.1% 53,685 0.1% 65,503 0.1% 65,503 0.1% 50,772,384 1511.4% 50,772,384 1511.4% 0 0.0% 0 0.0%
substr_replace 58,030 0.2% 52,049 0.1% 52,049 0.1% 65,141 0.1% 65,141 0.1% 8,852,984 263.5% 8,852,984 263.5% 600 0.0% 600 0.0%
Illuminate\Container\Container::offsetGet@1 730 0.0% 51,557 0.1% 1,712 0.0% 51,736 0.1% 1,751 0.0% 350,024 10.4% 696 0.0% 190,264 1.9% 0 0.0%
Illuminate\Container\Container::make@1 730 0.0% 49,845 0.1% 1,728 0.0% 49,985 0.1% 1,721 0.0% 349,328 10.4% 648 0.0% 190,264 1.9% 0 0.0%
Illuminate\View\Engines\PhpEngine::evaluatePath@1 365 0.0% 49,792 0.1% 3,158 0.0% 49,702 0.1% 2,508 0.0% 2,278,640 67.8% 920 0.0% 1,614,192 15.9% 320 0.0%
Symfony\Component\Finder\SplFileInfo::__construct 11,840 0.0% 48,324 0.1% 32,330 0.1% 53,309 0.1% 32,218 0.1% 1,710,952 50.9% 696 0.0% 0 0.0% 0 0.0%
IteratorIterator::valid 58,624 0.2% 48,262 0.1% 48,262 0.1% 67,922 0.1% 67,922 0.1% 5,568 0.2% 5,568 0.2% 0 0.0% 0 0.0%
Illuminate\Container\Container::resolve@2 730 0.0% 48,117 0.1% 13,435 0.0% 48,264 0.1% 10,241 0.0% 348,680 10.4% 1,288 0.0% 190,264 1.9% 0 0.0%
Illuminate\View\Factory::viewInstance 730 0.0% 47,043 0.1% 3,321 0.0% 47,167 0.1% 2,985 0.0% 385,752 11.5% 101,496 3.0% 100,288 1.0% 0 0.0%
Saaze\Templates\TemplateManager::toObject 730 0.0% 47,004 0.1% 3,091 0.0% 47,174 0.1% 2,762 0.0% 7,089,896 211.1% -5,265,360 -156.7% 298,256 2.9% 0 0.0%
Symfony\Component\Finder\Iterator\ExcludeDirectoryFilterIterator::accept 11,840 0.0% 46,978 0.1% 36,774 0.1% 52,244 0.1% 36,662 0.1% 3,696 0.1% -924,120 -27.5% 0 0.0% 0 0.0%
Parsedown::blockTable 1,960 0.0% 46,054 0.1% 28,638 0.0% 46,725 0.1% 24,672 0.0% 5,960,224 177.4% 4,725,024 140.7% 3,736 0.0% 3,640 0.0%
Illuminate\Filesystem\Filesystem::getRequire@1 365 0.0% 44,738 0.1% 2,026 0.0% 44,632 0.1% 1,799 0.0% 68,728 2.0% -10,952 -0.3% 1,600,136 15.7% 1,016 0.0%
Illuminate\Container\Container::fireResolvingCallbacks 2,555 0.0% 43,008 0.1% 16,988 0.0% 43,884 0.1% 14,281 0.0% 5,280 0.2% 1,992 0.1% 0 0.0% 0 0.0%
Illuminate\View\Factory::getEngineFromPath 730 0.0% 42,489 0.1% 3,322 0.0% 42,649 0.1% 2,989 0.0% 233,248 6.9% -273,768 -8.1% 100,288 1.0% 0 0.0%
Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}@1 365 0.0% 41,529 0.1% 7,696 0.0% 41,457 0.1% 6,269 0.0% 79,080 2.4% -1,760,688 -52.4% 1,598,520 15.7% 352 0.0%
strrpos 44,817 0.2% 40,229 0.1% 40,229 0.1% 53,272 0.1% 53,272 0.1% 1,072 0.0% 1,072 0.0% 0 0.0% 0 0.0%
ReflectionParameter::getName 45,810 0.2% 38,611 0.1% 38,611 0.1% 49,585 0.1% 49,585 0.1% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Spatie\YamlFrontMatter\Document::__construct 11,451 0.0% 36,277 0.1% 26,816 0.0% 40,130 0.1% 26,651 0.0% 1,216 0.0% 664 0.0% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::dispatch 1,460 0.0% 35,951 0.1% 8,189 0.0% 36,328 0.1% 7,141 0.0% 144,776 4.3% -547,600 -16.3% 0 0.0% 0 0.0%
Parsedown::lines@2 700 0.0% 35,849 0.1% 7,821 0.0% 36,020 0.1% 6,803 0.0% 1,404,920 41.8% 239,640 7.1% 36,848 0.4% 6,304 0.1%
tap 1,095 0.0% 35,475 0.1% 2,878 0.0% 35,710 0.1% 2,839 0.0% 396,896 11.8% 1,232 0.0% 171,320 1.7% 0 0.0%
strcspn 38,010 0.2% 34,836 0.1% 34,836 0.1% 44,695 0.1% 44,695 0.1% 536 0.0% 536 0.0% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::find 730 0.0% 34,617 0.1% 4,406 0.0% 34,805 0.1% 3,793 0.0% 202,592 6.0% 102,976 3.1% 0 0.0% 0 0.0%
Adbar\Dot::getArrayItems 11,453 0.0% 34,106 0.1% 24,874 0.0% 38,418 0.1% 25,268 0.0% 1,152 0.0% 616 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::Illuminate\View\{closure} 1,460 0.0% 33,192 0.1% 3,839 0.0% 33,611 0.1% 3,782 0.0% 184,240 5.5% 1,280 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::bind 2,555 0.0% 31,007 0.1% 15,845 0.0% 31,819 0.1% 13,814 0.0% 1,143,760 34.0% 139,264 4.1% 0 0.0% 0 0.0%
Illuminate\Container\Container::getContextualConcrete 4,015 0.0% 30,530 0.1% 14,655 0.0% 31,921 0.1% 13,255 0.0% 35,880 1.1% 1,928 0.1% 0 0.0% 0 0.0%
IteratorIterator::key 34,750 0.1% 28,749 0.0% 28,749 0.0% 39,824 0.1% 39,824 0.1% 4,416 0.1% 4,416 0.1% 0 0.0% 0 0.0%
json_decode 730 0.0% 28,182 0.0% 28,182 0.0% 28,379 0.0% 28,379 0.0% 7,088,016 211.0% 7,088,016 211.0% 294,472 2.9% 294,472 2.9%
FilterIterator::rewind 389 0.0% 26,927 0.0% 3,988 0.0% 26,693 0.0% 3,194 0.0% 4,104,128 122.2% -20,056 -0.6% 25,512 0.3% 0 0.0%
Illuminate\View\FileViewFinder::findInPaths 730 0.0% 26,859 0.0% 3,662 0.0% 27,085 0.0% 3,297 0.0% 97,832 2.9% -305,856 -9.1% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::register 365 0.0% 26,461 0.0% 2,934 0.0% 26,464 0.0% 2,371 0.0% 1,022,768 30.4% 840 0.0% 0 0.0% 0 0.0%
Jenssegers\Blade\Blade::setupContainer 365 0.0% 25,791 0.0% 3,243 0.0% 25,883 0.0% 2,839 0.0% 1,104,936 32.9% 479,280 14.3% 0 0.0% 0 0.0%
Parsedown::instance 22,902 0.1% 24,608 0.0% 24,594 0.0% 32,750 0.1% 32,735 0.1% 6,776 0.2% 1,392 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::callCreator 730 0.0% 24,593 0.0% 3,206 0.0% 24,783 0.0% 2,953 0.0% 181,144 5.4% 35,752 1.1% 0 0.0% 0 0.0%
Illuminate\View\Engines\EngineResolver::resolve 730 0.0% 23,984 0.0% 1,428 0.0% 24,217 0.0% 1,557 0.0% 171,808 5.1% 117,464 3.5% 0 0.0% 0 0.0%
Saaze\Entries\Entry::setCollection 23,231 0.1% 23,281 0.0% 23,281 0.0% 33,176 0.1% 33,176 0.1% 1,720 0.1% 1,720 0.1% 0 0.0% 0 0.0%
file_put_contents 365 0.0% 23,169 0.0% 23,169 0.0% 23,442 0.0% 23,442 0.0% 1,136 0.0% 1,136 0.0% 0 0.0% 0 0.0%
call_user_func 365 0.0% 22,556 0.0% 1,015 0.0% 22,660 0.0% 1,005 0.0% 54,344 1.6% 632 0.0% 0 0.0% 0 0.0%
Illuminate\View\Compilers\Compiler::isExpired 730 0.0% 22,222 0.0% 5,415 0.0% 22,499 0.0% 4,638 0.0% 100,816 3.0% 1,392 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::callComposer 730 0.0% 22,071 0.0% 2,961 0.0% 22,245 0.0% 2,624 0.0% 78,448 2.3% 36,336 1.1% 25,784 0.3% 0 0.0%
Illuminate\Container\Container::bindIf 1,095 0.0% 21,946 0.0% 4,251 0.0% 22,218 0.0% 3,822 0.0% 595,560 17.7% 712 0.0% 0 0.0% 0 0.0%
DirectoryIterator::getFilename 23,680 0.1% 21,221 0.0% 21,221 0.0% 32,239 0.1% 32,239 0.1% 1,855,600 55.2% 1,855,600 55.2% 0 0.0% 0 0.0%
Parsedown::setBreaksEnabled 22,902 0.1% 20,976 0.0% 20,976 0.0% 29,109 0.0% 29,109 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
ParsedownExtra::blockHeader 1,820 0.0% 20,926 0.0% 7,249 0.0% 21,428 0.0% 6,696 0.0% 1,700,424 50.6% 58,984 1.8% 8,112 0.1% 1,552 0.0%
strlen 23,961 0.1% 20,268 0.0% 20,268 0.0% 27,461 0.0% 27,461 0.0% 2,176 0.1% 2,176 0.1% 0 0.0% 0 0.0%
Illuminate\Container\Container::fireAfterResolvingCallbacks 2,555 0.0% 19,380 0.0% 13,074 0.0% 20,275 0.0% 11,172 0.0% 2,024 0.1% 760 0.0% 0 0.0% 0 0.0%
ReflectionParameter::isOptional 22,909 0.1% 19,311 0.0% 19,311 0.0% 25,168 0.0% 25,168 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Parsedown::blockRule 5,180 0.0% 18,404 0.0% 12,169 0.0% 19,638 0.0% 11,928 0.0% 22,344 0.7% 21,744 0.6% 224 0.0% 224 0.0%
DirectoryIterator::next 12,580 0.1% 18,340 0.0% 18,340 0.0% 24,538 0.0% 24,538 0.0% -3,218,792 -95.8% -3,218,792 -95.8% 328 0.0% 328 0.0%
load::blade/6cecfa3087042a50b024a7a00f8502f35100640b.php 327 0.0% 16,973 0.0% 16,973 0.0% 17,219 0.0% 17,219 0.0% 1,525,896 45.4% 1,525,896 45.4% 66,432 0.7% 66,432 0.7%
Illuminate\View\Factory::yieldContent 1,095 0.0% 16,964 0.0% 8,621 0.0% 17,327 0.0% 7,405 0.0% 3,696 0.1% -174,376 -5.2% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::getPossibleViewFiles 730 0.0% 16,587 0.0% 2,179 0.0% 16,895 0.0% 2,241 0.0% 402,488 12.0% 664 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\ExcludeDirectoryFilterIterator::getChildren 385 0.0% 16,280 0.0% 2,309 0.0% 16,250 0.0% 1,889 0.0% 3,417,840 101.7% 99,920 3.0% 0 0.0% 0 0.0%
Parsedown::li@1 420 0.0% 16,242 0.0% 4,023 0.0% 16,339 0.0% 3,357 0.0% 60,192 1.8% -698,520 -20.8% 13,208 0.1% 1,440 0.0%
Parsedown::blockComment 13,790 0.1% 16,014 0.0% 16,014 0.0% 20,153 0.0% 20,153 0.0% 1,104 0.0% 1,104 0.0% 0 0.0% 0 0.0%
RecursiveDirectoryIterator::getChildren 761 0.0% 16,010 0.0% 2,776 0.0% 16,246 0.0% 2,669 0.0% 6,606,104 196.7% 6,364,864 189.5% 27,960 0.3% 25,904 0.3%
SplFileInfo::__construct 11,840 0.0% 15,994 0.0% 15,994 0.0% 21,091 0.0% 21,091 0.0% 1,710,256 50.9% 1,710,256 50.9% 0 0.0% 0 0.0%
FilesystemIterator::key 11,840 0.0% 15,959 0.0% 15,959 0.0% 20,207 0.0% 20,207 0.0% 4,495,048 133.8% 4,495,048 133.8% 0 0.0% 0 0.0%
json_encode 730 0.0% 15,731 0.0% 15,731 0.0% 16,033 0.0% 16,033 0.0% 5,267,240 156.8% 5,267,240 156.8% 3,784 0.0% 3,784 0.0%
Illuminate\Container\Container::singleton 1,095 0.0% 15,302 0.0% 2,564 0.0% 15,751 0.0% 2,690 0.0% 414,168 12.3% 1,864 0.1% 0 0.0% 0 0.0%
Illuminate\View\Factory::getExtension 730 0.0% 15,183 0.0% 3,291 0.0% 15,443 0.0% 2,975 0.0% 335,208 10.0% -19,048 -0.6% 100,288 1.0% 0 0.0%
Parsedown::blockQuoteContinue 4,760 0.0% 15,087 0.0% 10,784 0.0% 16,374 0.0% 10,975 0.0% 7,494,520 223.1% 5,018,768 149.4% 6,600 0.1% 6,456 0.1%
SplFileInfo::isDir 12,580 0.1% 15,024 0.0% 15,024 0.0% 19,952 0.0% 19,952 0.0% 33,648 1.0% 33,648 1.0% 568 0.0% 568 0.0%
ReflectionClass::__construct 11,466 0.0% 14,996 0.0% 14,996 0.0% 18,488 0.0% 18,488 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
stristr 11,900 0.0% 14,577 0.0% 14,577 0.0% 17,918 0.0% 17,918 0.0% 381,328 11.4% 381,328 11.4% 1,344 0.0% 1,344 0.0%
DOMNode::replaceChild 12,740 0.1% 14,128 0.0% 14,128 0.0% 18,058 0.0% 18,058 0.0% 2,208 0.1% 2,208 0.1% 0 0.0% 0 0.0%
ReflectionFunctionAbstract::getParameters 11,455 0.0% 14,030 0.0% 14,030 0.0% 18,451 0.0% 18,451 0.0% 8,431,088 251.0% 8,431,088 251.0% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::parseEventAndPayload 1,460 0.0% 14,030 0.0% 5,568 0.0% 14,476 0.0% 5,026 0.0% 552,040 16.4% 549,688 16.4% 0 0.0% 0 0.0%
DOMDocument::__construct 12,740 0.1% 13,921 0.0% 13,921 0.0% 17,871 0.0% 17,871 0.0% 613,728 18.3% 613,728 18.3% 0 0.0% 0 0.0%
load::blade/e40fe3ff1f0f2c27cfd85b74275a04c0d7fdba0b.php 365 0.0% 13,903 0.0% 13,903 0.0% 14,203 0.0% 14,203 0.0% 1,681,592 50.1% 1,681,592 50.1% 1,597,264 15.7% 1,597,264 15.7%
Parsedown::blockListComplete 12,250 0.1% 13,689 0.0% 12,895 0.0% 16,878 0.0% 15,884 0.0% 833,304 24.8% 595,888 17.7% 4,752 0.0% 2,304 0.0%
DOMNode::removeChild 12,740 0.1% 13,678 0.0% 13,678 0.0% 17,570 0.0% 17,570 0.0% 2,208 0.1% 2,208 0.1% 0 0.0% 0 0.0%
Illuminate\Container\Container::fireBeforeResolvingCallbacks 4,015 0.0% 13,312 0.0% 9,712 0.0% 14,867 0.0% 9,534 0.0% 2,560 0.1% 1,928 0.1% 0 0.0% 0 0.0%
array_walk_recursive 11,456 0.0% 13,173 0.0% 13,173 0.0% 17,125 0.0% 17,125 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
DOMElement::getAttribute 12,740 0.1% 13,165 0.0% 13,165 0.0% 17,248 0.0% 17,248 0.0% 2,208 0.1% 2,208 0.1% 0 0.0% 0 0.0%
count 14,798 0.1% 13,088 0.0% 13,088 0.0% 17,978 0.0% 17,978 0.0% 7,032 0.2% 7,032 0.2% 0 0.0% 0 0.0%
Illuminate\Container\Container::getLastParameterOverride 2,555 0.0% 13,042 0.0% 8,771 0.0% 14,043 0.0% 8,230 0.0% 14,744 0.4% 13,608 0.4% 0 0.0% 0 0.0%
Illuminate\Container\Container::findInContextualBindings 4,015 0.0% 12,645 0.0% 9,203 0.0% 14,085 0.0% 9,347 0.0% 33,384 1.0% 12,376 0.4% 0 0.0% 0 0.0%
RecursiveDirectoryIterator::__construct 801 0.0% 12,636 0.0% 12,636 0.0% 13,133 0.0% 13,133 0.0% 253,344 7.5% 253,344 7.5% 2,936 0.0% 2,936 0.0%
e 3,565 0.0% 12,181 0.0% 7,931 0.0% 13,244 0.0% 8,075 0.0% 578,056 17.2% 2,304 0.1% 0 0.0% 0 0.0%
libxml_use_internal_errors 12,740 0.1% 12,136 0.0% 12,136 0.0% 16,473 0.0% 16,473 0.0% 2,312 0.1% 2,312 0.1% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\RecursiveDirectoryIterator::getChildren 385 0.0% 12,126 0.0% 1,341 0.0% 12,299 0.0% 1,416 0.0% 3,274,136 97.5% -28,952 -0.9% 0 0.0% 0 0.0%
DirectoryIterator::valid 14,122 0.1% 12,114 0.0% 12,114 0.0% 17,383 0.0% 17,383 0.0% 3,344 0.1% 3,344 0.1% 584 0.0% 584 0.0%
Illuminate\Events\Dispatcher::getListeners 1,460 0.0% 12,073 0.0% 7,835 0.0% 12,499 0.0% 6,756 0.0% 139,752 4.2% 776 0.0% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::moveToPreviousLine 11,603 0.0% 11,877 0.0% 11,877 0.0% 16,397 0.0% 16,397 0.0% 1,800 0.1% 1,800 0.1% 0 0.0% 0 0.0%
Illuminate\Filesystem\Filesystem::exists 1,460 0.0% 11,849 0.0% 3,392 0.0% 12,420 0.0% 3,357 0.0% 1,800 0.1% 1,248 0.0% 0 0.0% 0 0.0%
SplFileInfo::getRealPath 740 0.0% 11,845 0.0% 11,845 0.0% 12,131 0.0% 12,131 0.0% 88,264 2.6% 88,264 2.6% 664 0.0% 664 0.0%
ReflectionClass::getConstructor 11,461 0.0% 11,700 0.0% 11,700 0.0% 15,897 0.0% 15,897 0.0% 1,283,512 38.2% 1,283,512 38.2% 0 0.0% 0 0.0%
array_slice 11,453 0.0% 11,590 0.0% 11,590 0.0% 15,415 0.0% 15,415 0.0% 4,306,728 128.2% 4,306,728 128.2% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::getCurrentLineIndentation 11,613 0.0% 11,561 0.0% 11,553 0.0% 16,282 0.0% 16,270 0.0% 2,496 0.1% 1,608 0.0% 0 0.0% 0 0.0%
ParsedownExtra::blockSetextHeader 2,030 0.0% 11,318 0.0% 5,362 0.0% 12,041 0.0% 5,173 0.0% 2,336 0.1% 1,168 0.0% 648 0.0% 648 0.0%
Adbar\Dot::all 12,145 0.0% 11,180 0.0% 11,180 0.0% 15,105 0.0% 15,105 0.0% 1,104 0.0% 1,104 0.0% 0 0.0% 0 0.0%
Parsedown::blockHeader 1,820 0.0% 11,177 0.0% 7,767 0.0% 11,716 0.0% 7,266 0.0% 1,538,936 45.8% 1,427,560 42.5% 6,560 0.1% 6,112 0.1%
Spatie\YamlFrontMatter\Document::matter 11,451 0.0% 11,102 0.0% 11,102 0.0% 15,465 0.0% 15,465 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
preg_match_all 6,652 0.0% 10,882 0.0% 10,882 0.0% 12,682 0.0% 12,682 0.0% 8,436,552 251.1% 8,436,552 251.1% 5,320 0.1% 5,320 0.1%
Illuminate\Support\Arr::first 730 0.0% 10,652 0.0% 3,248 0.0% 10,916 0.0% 2,915 0.0% 3,696 0.1% 696 0.0% 0 0.0% 0 0.0%
substr_compare 11,780 0.0% 10,548 0.0% 10,548 0.0% 14,141 0.0% 14,141 0.0% 1,120 0.0% 1,120 0.0% 0 0.0% 0 0.0%
SplFileInfo::getFilename 11,453 0.0% 10,440 0.0% 10,440 0.0% 14,958 0.0% 14,958 0.0% 915,400 27.2% 915,400 27.2% 0 0.0% 0 0.0%
unlink 364 0.0% 10,414 0.0% 10,414 0.0% 10,650 0.0% 10,650 0.0% -71,752 -2.1% -71,752 -2.1% 216 0.0% 216 0.0%
SplFileInfo::getPathname 11,453 0.0% 10,388 0.0% 10,388 0.0% 14,851 0.0% 14,851 0.0% 1,431,472 42.6% 1,431,472 42.6% 0 0.0% 0 0.0%
implode 11,465 0.0% 10,317 0.0% 10,317 0.0% 14,389 0.0% 14,389 0.0% 541,424 16.1% 541,424 16.1% 3,040 0.0% 3,040 0.0%
Symfony\Component\Finder\Iterator\RecursiveDirectoryIterator::__construct 424 0.0% 10,285 0.0% 1,640 0.0% 10,472 0.0% 1,509 0.0% 127,144 3.8% 1,328 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\SplFileInfo::getRelativePathname 11,453 0.0% 10,274 0.0% 10,274 0.0% 15,674 0.0% 15,674 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Spatie\YamlFrontMatter\Document::body 11,451 0.0% 10,228 0.0% 10,228 0.0% 14,582 0.0% 14,582 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
FilterIterator::rewind@1 39 0.0% 10,188 0.0% 368 0.0% 9,941 0.0% 293 0.0% 1,006,712 30.0% 872 0.0% 25,512 0.3% 0 0.0%
is_string 11,453 0.0% 9,400 0.0% 9,400 0.0% 13,463 0.0% 13,463 0.0% 528 0.0% 528 0.0% 0 0.0% 0 0.0%
rmdir 377 0.0% 9,390 0.0% 9,390 0.0% 9,495 0.0% 9,495 0.0% -26,296 -0.8% -26,296 -0.8% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::Illuminate\View\{closure} 2,920 0.0% 9,285 0.0% 6,699 0.0% 10,099 0.0% 6,563 0.0% 126,712 3.8% 68,384 2.0% 0 0.0% 0 0.0%
FilterIterator::rewind@2 39 0.0% 9,135 0.0% 1,127 0.0% 8,892 0.0% 876 0.0% 1,000,496 29.8% 6,320 0.2% 25,512 0.3% 0 0.0%
Illuminate\Container\Container::fireCallbackArray 10,220 0.0% 8,488 0.0% 8,488 0.0% 12,068 0.0% 12,068 0.0% 1,264 0.0% 1,264 0.0% 0 0.0% 0 0.0%
Saaze\Collections\CollectionManager::getCollections 1 0.0% 8,469 0.0% 9 0.0% 8,428 0.0% 8 0.0% 758,320 22.6% -9,208 -0.3% 852,672 8.4% 0 0.0%
Saaze\Collections\CollectionManager::loadCollections 1 0.0% 8,407 0.0% 80 0.0% 8,367 0.0% 69 0.0% 760,536 22.6% -44,168 -1.3% 852,672 8.4% 0 0.0%
Illuminate\Container\Container::getExtenders 2,555 0.0% 8,262 0.0% 6,063 0.0% 9,148 0.0% 6,019 0.0% 2,432 0.1% 1,848 0.1% 0 0.0% 0 0.0%
Saaze\Entries\EntryManager::setCollection 367 0.0% 8,233 0.0% 8,233 0.0% 8,466 0.0% 8,466 0.0% -58,666,664 -1746.4% -58,666,664 -1746.4% 0 0.0% 0 0.0%
Illuminate\Filesystem\Filesystem::lastModified 1,460 0.0% 8,218 0.0% 3,169 0.0% 8,643 0.0% 3,101 0.0% 15,832 0.5% 664 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::resolved 2,555 0.0% 8,102 0.0% 5,901 0.0% 8,833 0.0% 5,739 0.0% 1,232 0.0% 648 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::build@2 730 0.0% 8,031 0.0% 2,922 0.0% 8,380 0.0% 2,657 0.0% 341,520 10.2% 712 0.0% 190,264 1.9% 0 0.0%
mkdir 363 0.0% 7,846 0.0% 7,846 0.0% 8,113 0.0% 8,113 0.0% 1,120 0.0% 1,120 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\RecursiveDirectoryIterator::rewind 424 0.0% 7,839 0.0% 2,089 0.0% 8,056 0.0% 1,841 0.0% 5,816 0.2% -29,272 -0.9% 0 0.0% 0 0.0%
Illuminate\Support\Arr::wrap 1,460 0.0% 7,273 0.0% 4,905 0.0% 7,775 0.0% 4,583 0.0% 1,784 0.1% 712 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Finder::getIterator 39 0.0% 6,805 0.0% 162 0.0% 6,805 0.0% 167 0.0% 543,520 16.2% -9,320 -0.3% 57,200 0.6% 0 0.0%
end 7,751 0.0% 6,668 0.0% 6,668 0.0% 9,055 0.0% 9,055 0.0% 387,744 11.5% 387,744 11.5% 2,448 0.0% 2,448 0.0%
Symfony\Component\Finder\Finder::searchInDirectory 39 0.0% 6,643 0.0% 989 0.0% 6,638 0.0% 792 0.0% 552,840 16.5% 358,336 10.7% 57,200 0.6% 0 0.0%
Illuminate\View\Factory::normalizeName 730 0.0% 6,297 0.0% 1,835 0.0% 6,555 0.0% 1,845 0.0% 19,760 0.6% -872 -0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerFactory 365 0.0% 6,295 0.0% 1,095 0.0% 6,429 0.0% 1,049 0.0% 255,952 7.6% 117,464 3.5% 0 0.0% 0 0.0%
Illuminate\Support\Arr::except 365 0.0% 6,150 0.0% 1,028 0.0% 6,247 0.0% 1,069 0.0% 14,760 0.4% 12,344 0.4% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerEngineResolver 365 0.0% 6,016 0.0% 944 0.0% 6,152 0.0% 967 0.0% 255,336 7.6% 117,496 3.5% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerBladeCompiler 365 0.0% 5,986 0.0% 956 0.0% 6,127 0.0% 941 0.0% 255,336 7.6% 117,496 3.5% 0 0.0% 0 0.0%
Parsedown::blockSetextHeader 2,030 0.0% 5,956 0.0% 4,535 0.0% 6,868 0.0% 4,915 0.0% 1,168 0.0% -40,248 -1.2% 0 0.0% 0 0.0%
Illuminate\View\Compilers\Compiler::getCompiledPath 1,460 0.0% 5,938 0.0% 3,745 0.0% 6,563 0.0% 3,843 0.0% 165,952 4.9% 48,584 1.4% 0 0.0% 0 0.0%
is_dir 808 0.0% 5,923 0.0% 5,923 0.0% 6,340 0.0% 6,340 0.0% -15,376 -0.5% -15,376 -0.5% 0 0.0% 0 0.0%
Illuminate\Container\Container::getAlias 6,570 0.0% 5,753 0.0% 5,753 0.0% 8,427 0.0% 8,427 0.0% 2,336 0.1% 2,336 0.1% 0 0.0% 0 0.0%
FilesystemIterator::rewind 801 0.0% 5,624 0.0% 5,624 0.0% 6,019 0.0% 6,019 0.0% 1,184 0.0% 1,184 0.0% 584 0.0% 584 0.0%
Saaze\Collections\CollectionManager::loadCollection 2 0.0% 5,619 0.0% 21 0.0% 5,598 0.0% 18 0.0% 498,640 14.8% 1,264 0.0% 643,648 6.3% 0 0.0%
Illuminate\View\Factory::startSection 730 0.0% 5,610 0.0% 2,702 0.0% 5,819 0.0% 2,468 0.0% 6,363,624 189.4% 138,064 4.1% 0 0.0% 0 0.0%
Parsedown::line@2 280 0.0% 5,500 0.0% 2,123 0.0% 5,632 0.0% 1,852 0.0% 53,952 1.6% 19,904 0.6% 4,568 0.0% 1,744 0.0%
Illuminate\View\Factory::flushStateIfDoneRendering 730 0.0% 5,462 0.0% 2,359 0.0% 5,733 0.0% 2,198 0.0% -1,883,264 -56.1% 1,296 0.0% 0 0.0% 0 0.0%
Parsedown::blockQuote 1,330 0.0% 5,302 0.0% 3,418 0.0% 5,726 0.0% 3,397 0.0% 2,821,896 84.0% 1,543,968 46.0% 3,584 0.0% 2,288 0.0%
Saaze\Templates\BladeTemplateParser::templateExists 365 0.0% 5,239 0.0% 1,740 0.0% 5,392 0.0% 1,556 0.0% 8,680 0.3% 1,328 0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerViewFinder 365 0.0% 5,230 0.0% 971 0.0% 5,385 0.0% 982 0.0% 255,304 7.6% 117,464 3.5% 0 0.0% 0 0.0%
Illuminate\View\Compilers\BladeCompiler::component 365 0.0% 5,217 0.0% 2,416 0.0% 5,368 0.0% 2,104 0.0% 213,256 6.3% 112,544 3.4% 171,320 1.7% 0 0.0%
Illuminate\Support\Arr::forget 365 0.0% 5,122 0.0% 2,413 0.0% 5,178 0.0% 2,117 0.0% 2,416 0.1% 696 0.0% 0 0.0% 0 0.0%
Saaze\Collections\Collection::__construct 2 0.0% 5,053 0.0% 27 0.0% 5,033 0.0% 24 0.0% 469,120 14.0% -16,720 -0.5% 581,616 5.7% 0 0.0%
filemtime 1,460 0.0% 5,049 0.0% 5,049 0.0% 5,542 0.0% 5,542 0.0% 15,168 0.5% 15,168 0.5% 0 0.0% 0 0.0%
FilterIterator::rewind@3 74 0.0% 4,831 0.0% 873 0.0% 4,831 0.0% 687 0.0% 675,384 20.1% -3,416 -0.1% 25,512 0.3% 0 0.0%
Illuminate\Support\Str::endsWith 730 0.0% 4,760 0.0% 3,383 0.0% 5,046 0.0% 3,007 0.0% 1,816 0.1% -28,488 -0.8% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::createFactory 365 0.0% 4,737 0.0% 1,161 0.0% 4,879 0.0% 1,132 0.0% 405,312 12.1% 93,040 2.8% 74,928 0.7% 0 0.0%
Illuminate\View\View::gatherData 730 0.0% 4,720 0.0% 3,224 0.0% 5,038 0.0% 2,998 0.0% 288,384 8.6% 1,264 0.0% 0 0.0% 0 0.0%
Saaze\Collections\CollectionParser::parseCollection 2 0.0% 4,604 0.0% 21 0.0% 4,583 0.0% 19 0.0% 420,856 12.5% -4,976 -0.1% 479,456 4.7% 0 0.0%
Illuminate\View\View::name 1,460 0.0% 4,546 0.0% 3,288 0.0% 5,123 0.0% 3,429 0.0% 42,728 1.3% 42,160 1.3% 25,784 0.3% 25,784 0.3%
Illuminate\Container\Container::getCallbacksForType 5,110 0.0% 4,458 0.0% 4,458 0.0% 6,363 0.0% 6,363 0.0% 1,264 0.0% 1,264 0.0% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::__construct 365 0.0% 4,434 0.0% 1,194 0.0% 4,596 0.0% 1,201 0.0% 163,080 4.9% 696 0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewName::normalize 730 0.0% 4,415 0.0% 2,816 0.0% 4,662 0.0% 2,507 0.0% 16,256 0.5% 712 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::stopSection 365 0.0% 3,823 0.0% 2,411 0.0% 3,957 0.0% 1,969 0.0% -4,516,624 -134.5% 12,504 0.4% 4,616 0.0% 0 0.0%
load::blade/d93a685681750cfe4cbb36e259dc1aad4eb4442d.php 34 0.0% 3,819 0.0% 3,819 0.0% 3,827 0.0% 3,827 0.0% 375,152 11.2% 375,152 11.2% 71,440 0.7% 71,440 0.7%
Jenssegers\Blade\Blade::Jenssegers\Blade\{closure} 1,095 0.0% 3,814 0.0% 1,978 0.0% 4,317 0.0% 2,295 0.0% 677,856 20.2% 196,168 5.8% 281,904 2.8% 0 0.0%
Illuminate\Container\Container::bound 1,095 0.0% 3,685 0.0% 2,725 0.0% 4,041 0.0% 2,695 0.0% 1,232 0.0% 648 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\ExcludeDirectoryFilterIterator::__construct 424 0.0% 3,607 0.0% 2,453 0.0% 3,852 0.0% 2,201 0.0% 77,936 2.3% 28,632 0.9% 0 0.0% 0 0.0%
Illuminate\Container\Container::fireBeforeCallbackArray 4,015 0.0% 3,600 0.0% 3,600 0.0% 5,333 0.0% 5,333 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
array_pop 3,686 0.0% 3,433 0.0% 3,433 0.0% 4,956 0.0% 4,956 0.0% 3,880 0.1% 3,880 0.1% 0 0.0% 0 0.0%
array_merge 3,378 0.0% 3,248 0.0% 3,248 0.0% 4,429 0.0% 4,429 0.0% 745,488 22.2% 745,488 22.2% 0 0.0% 0 0.0%
Illuminate\Container\Container::isAlias 3,650 0.0% 3,161 0.0% 3,161 0.0% 4,440 0.0% 4,440 0.0% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
ParsedownExtra::blockDefinitionListContinue 630 0.0% 3,137 0.0% 2,183 0.0% 3,301 0.0% 2,021 0.0% 257,160 7.7% 231,416 6.9% 0 0.0% 0 0.0%
strtotime 664 0.0% 3,051 0.0% 3,051 0.0% 3,358 0.0% 3,358 0.0% 1,200 0.0% 1,200 0.0% 0 0.0% 0 0.0%
cache_path 730 0.0% 2,828 0.0% 2,183 0.0% 3,080 0.0% 2,197 0.0% 6,088 0.2% 1,224 0.0% 0 0.0% 0 0.0%
templates_path 730 0.0% 2,764 0.0% 2,139 0.0% 3,128 0.0% 2,243 0.0% 7,352 0.2% 2,432 0.1% 0 0.0% 0 0.0%
Illuminate\View\Factory::getLastLoop 377 0.0% 2,747 0.0% 904 0.0% 2,890 0.0% 938 0.0% 15,504 0.5% -124,792 -3.7% 0 0.0% 0 0.0%
Illuminate\Container\Container::isShared 2,555 0.0% 2,708 0.0% 2,708 0.0% 3,781 0.0% 3,781 0.0% 1,752 0.1% 1,752 0.1% 0 0.0% 0 0.0%
Illuminate\View\FileViewFinder::hasHintInformation 730 0.0% 2,675 0.0% 2,053 0.0% 2,969 0.0% 2,021 0.0% 1,232 0.0% 664 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::__construct 365 0.0% 2,578 0.0% 1,146 0.0% 2,738 0.0% 1,129 0.0% 139,088 4.1% -136,576 -4.1% 0 0.0% 0 0.0%
compact 2,555 0.0% 2,550 0.0% 2,550 0.0% 3,161 0.0% 3,161 0.0% 961,232 28.6% 961,232 28.6% 0 0.0% 0 0.0%
Illuminate\View\Factory::share 730 0.0% 2,541 0.0% 1,943 0.0% 2,861 0.0% 1,994 0.0% 413,504 12.3% 412,952 12.3% 0 0.0% 0 0.0%
Illuminate\Container\Container::getConcrete 2,555 0.0% 2,522 0.0% 2,522 0.0% 3,496 0.0% 3,496 0.0% 1,752 0.1% 1,752 0.1% 0 0.0% 0 0.0%
date 1,029 0.0% 2,520 0.0% 2,520 0.0% 2,928 0.0% 2,928 0.0% 264,592 7.9% 264,592 7.9% 0 0.0% 0 0.0%
Illuminate\Filesystem\Filesystem::isFile 730 0.0% 2,469 0.0% 1,594 0.0% 2,849 0.0% 1,694 0.0% 1,800 0.1% 1,248 0.0% 600 0.0% 600 0.0%
Illuminate\Container\Container::dropStaleInstances 2,555 0.0% 2,442 0.0% 2,442 0.0% 3,301 0.0% 3,301 0.0% 41,480 1.2% 41,480 1.2% 0 0.0% 0 0.0%
Illuminate\View\Factory::flushState 365 0.0% 2,416 0.0% 1,592 0.0% 2,537 0.0% 1,390 0.0% -1,885,160 -56.1% 728 0.0% 0 0.0% 0 0.0%
Illuminate\Support\Arr::exists 730 0.0% 2,393 0.0% 1,683 0.0% 2,596 0.0% 1,637 0.0% 1,184 0.0% 632 0.0% 0 0.0% 0 0.0%
Illuminate\Container\Container::isBuildable 2,555 0.0% 2,279 0.0% 2,279 0.0% 3,243 0.0% 3,243 0.0% 1,752 0.1% 1,752 0.1% 0 0.0% 0 0.0%
sha1 1,462 0.0% 2,196 0.0% 2,196 0.0% 2,723 0.0% 2,723 0.0% 118,080 3.5% 118,080 3.5% 0 0.0% 0 0.0%
class_exists 1,470 0.0% 2,154 0.0% 1,601 0.0% 2,637 0.0% 2,069 0.0% 38,992 1.2% -18,784 -0.6% 62,032 0.6% 0 0.0%
min 2,380 0.0% 2,148 0.0% 2,148 0.0% 2,812 0.0% 2,812 0.0% 1,080 0.0% 1,080 0.0% 0 0.0% 0 0.0%
Saaze\Collections\Collection::indexRoute 171 0.0% 2,140 0.0% 454 0.0% 2,224 0.0% 441 0.0% 1,848 0.1% 1,264 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\MultiplePcreFilterIterator::__construct 78 0.0% 2,104 0.0% 426 0.0% 2,135 0.0% 357 0.0% 57,640 1.7% 30,152 0.9% 15,208 0.1% 0 0.0%
Illuminate\Support\Arr::last 413 0.0% 2,084 0.0% 1,396 0.0% 2,217 0.0% 1,293 0.0% 142,064 4.2% 12,240 0.4% 0 0.0% 0 0.0%
Illuminate\View\Factory::incrementLoopIndices 341 0.0% 1,984 0.0% 1,362 0.0% 2,092 0.0% 1,246 0.0% 457,456 13.6% 760 0.0% 0 0.0% 0 0.0%
Saaze\Entries\EntryManager::paginateEntriesForTemplate 36 0.0% 1,963 0.0% 567 0.0% 1,979 0.0% 464 0.0% 902,208 26.9% 28,544 0.8% 0 0.0% 0 0.0%
ob_get_clean 1,095 0.0% 1,931 0.0% 1,931 0.0% 2,444 0.0% 2,444 0.0% -12,169,448 -362.3% -12,169,448 -362.3% 4,616 0.0% 4,616 0.0%
Illuminate\View\FileViewFinder::resolvePath 365 0.0% 1,756 0.0% 929 0.0% 1,961 0.0% 961 0.0% 24,528 0.7% 616 0.0% 0 0.0% 0 0.0%
ob_start 1,095 0.0% 1,710 0.0% 1,710 0.0% 2,195 0.0% 2,195 0.0% 18,082,456 538.3% 18,082,456 538.3% 25,952 0.3% 25,952 0.3%
Illuminate\Events\Dispatcher::shouldBroadcast 1,460 0.0% 1,659 0.0% 1,659 0.0% 2,212 0.0% 2,212 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
Illuminate\Support\Str::contains 365 0.0% 1,637 0.0% 1,130 0.0% 1,823 0.0% 1,165 0.0% 1,200 0.0% 648 0.0% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerFileEngine 365 0.0% 1,591 0.0% 1,072 0.0% 1,803 0.0% 1,131 0.0% 275,808 8.2% 117,496 3.5% 0 0.0% 0 0.0%
Illuminate\View\Engines\CompilerEngine::__construct 365 0.0% 1,564 0.0% 1,206 0.0% 1,766 0.0% 1,203 0.0% 1,296 0.0% 696 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\RecursiveDirectoryIterator::isRewindable 424 0.0% 1,545 0.0% 786 0.0% 1,782 0.0% 922 0.0% 34,488 1.0% -1,568 -0.0% 0 0.0% 0 0.0%
Illuminate\Events\Dispatcher::getWildcardListeners 1,460 0.0% 1,521 0.0% 1,521 0.0% 2,074 0.0% 2,074 0.0% 137,840 4.1% 137,840 4.1% 0 0.0% 0 0.0%
Saaze\Entries\Entry::getCollection 1,643 0.0% 1,473 0.0% 1,473 0.0% 2,031 0.0% 2,031 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
load::yaml/Parser.php 1 0.0% 1,471 0.0% 1,471 0.0% 1,473 0.0% 1,473 0.0% 286,640 8.5% 286,640 8.5% 450,432 4.4% 450,432 4.4%
load::parsedown/Parsedown.php 1 0.0% 1,417 0.0% 1,417 0.0% 1,412 0.0% 1,412 0.0% 360,200 10.7% 360,200 10.7% 541,096 5.3% 541,096 5.3%
Symfony\Component\Yaml\Unescaper::Symfony\Component\Yaml\{closure} 350 0.0% 1,408 0.0% 970 0.0% 1,530 0.0% 894 0.0% 1,296 0.0% 664 0.0% 168 0.0% 168 0.0%
Illuminate\View\ViewServiceProvider::registerPhpEngine 365 0.0% 1,372 0.0% 997 0.0% 1,532 0.0% 990 0.0% 118,128 3.5% 117,496 3.5% 0 0.0% 0 0.0%
Illuminate\View\ViewServiceProvider::registerBladeEngine 365 0.0% 1,357 0.0% 1,001 0.0% 1,579 0.0% 1,052 0.0% 118,128 3.5% 117,496 3.5% 0 0.0% 0 0.0%
Illuminate\View\View::getName 1,460 0.0% 1,258 0.0% 1,258 0.0% 1,694 0.0% 1,694 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Illuminate\View\Engines\EngineResolver::register 1,095 0.0% 1,250 0.0% 1,250 0.0% 1,741 0.0% 1,741 0.0% 159,576 4.8% 159,576 4.8% 0 0.0% 0 0.0%
FilesystemIterator::current 740 0.0% 1,222 0.0% 1,222 0.0% 1,423 0.0% 1,423 0.0% 6,178,344 183.9% 6,178,344 183.9% 24,120 0.2% 24,120 0.2%
Illuminate\View\Factory::parentPlaceholder 1,095 0.0% 1,190 0.0% 1,187 0.0% 1,587 0.0% 1,584 0.0% 1,768 0.1% 1,056 0.0% 0 0.0% 0 0.0%
is_object 1,460 0.0% 1,189 0.0% 1,189 0.0% 1,675 0.0% 1,675 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
extract 730 0.0% 1,176 0.0% 1,176 0.0% 1,584 0.0% 1,584 0.0% 1,488 0.0% 1,488 0.0% 904 0.0% 904 0.0%
Parsedown::inlineStrikethrough 770 0.0% 1,136 0.0% 1,008 0.0% 1,382 0.0% 1,221 0.0% 88,552 2.6% 56,048 1.7% 0 0.0% 0 0.0%
ParsedownExtra::blockDefinitionList 70 0.0% 1,133 0.0% 519 0.0% 1,163 0.0% 463 0.0% 731,000 21.8% 470,520 14.0% 13,480 0.1% 7,472 0.1%
Symfony\Component\Finder\Iterator\FilenameFilterIterator::toRegex 39 0.0% 1,053 0.0% 229 0.0% 1,077 0.0% 201 0.0% 16,760 0.5% -24,440 -0.7% 15,208 0.1% 0 0.0%
ucfirst 1,095 0.0% 976 0.0% 976 0.0% 1,391 0.0% 1,391 0.0% 35,624 1.1% 35,624 1.1% 0 0.0% 0 0.0%
load::yaml/Inline.php 1 0.0% 968 0.0% 968 0.0% 949 0.0% 949 0.0% 156,120 4.6% 156,120 4.6% 29,024 0.3% 29,024 0.3%
Illuminate\View\Factory::extendSection 730 0.0% 927 0.0% 927 0.0% 1,255 0.0% 1,255 0.0% 138,408 4.1% 138,408 4.1% 0 0.0% 0 0.0%
Illuminate\View\View::__construct 730 0.0% 923 0.0% 923 0.0% 1,219 0.0% 1,219 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\MultiplePcreFilterIterator::isRegex 78 0.0% 913 0.0% 534 0.0% 972 0.0% 479 0.0% 40,720 1.2% 3,920 0.1% 0 0.0% 0 0.0%
load::container/Container.php 1 0.0% 899 0.0% 899 0.0% 902 0.0% 902 0.0% 155,752 4.6% 155,752 4.6% 272,344 2.7% 272,344 2.7%
is_file 730 0.0% 875 0.0% 875 0.0% 1,155 0.0% 1,155 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
realpath 365 0.0% 827 0.0% 827 0.0% 1,000 0.0% 1,000 0.0% 23,912 0.7% 23,912 0.7% 0 0.0% 0 0.0%
Symfony\Component\Finder\Finder::in 39 0.0% 806 0.0% 314 0.0% 805 0.0% 248 0.0% 19,040 0.6% 16,040 0.5% 0 0.0% 0 0.0%
array_keys 730 0.0% 761 0.0% 761 0.0% 1,071 0.0% 1,071 0.0% 275,032 8.2% 275,032 8.2% 0 0.0% 0 0.0%
Illuminate\View\Factory::incrementRender 730 0.0% 739 0.0% 739 0.0% 1,091 0.0% 1,091 0.0% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::parseData 730 0.0% 707 0.0% 707 0.0% 972 0.0% 972 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::decrementRender 730 0.0% 691 0.0% 691 0.0% 1,026 0.0% 1,026 0.0% 1,168 0.0% 1,168 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::doneRendering 730 0.0% 687 0.0% 687 0.0% 998 0.0% 998 0.0% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
FilterIterator::__construct 542 0.0% 673 0.0% 673 0.0% 1,037 0.0% 1,037 0.0% 62,512 1.9% 62,512 1.9% 0 0.0% 0 0.0%
ob_get_level 730 0.0% 668 0.0% 668 0.0% 956 0.0% 956 0.0% 1,136 0.0% 1,136 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::getShared 730 0.0% 653 0.0% 653 0.0% 938 0.0% 938 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
load::finder/Finder.php 1 0.0% 607 0.0% 607 0.0% 609 0.0% 609 0.0% 93,912 2.8% 93,912 2.8% 126,312 1.2% 126,312 1.2%
Illuminate\View\Factory::addLoop 36 0.0% 605 0.0% 301 0.0% 632 0.0% 249 0.0% 42,256 1.3% 39,384 1.2% 0 0.0% 0 0.0%
load::support/Str.php 1 0.0% 571 0.0% 571 0.0% 573 0.0% 573 0.0% 98,944 2.9% 98,944 2.9% 171,320 1.7% 171,320 1.7%
load::Compilers/BladeCompiler.php 1 0.0% 564 0.0% 564 0.0% 566 0.0% 566 0.0% 163,760 4.9% 163,760 4.9% 216,176 2.1% 216,176 2.1%
Symfony\Component\Finder\Iterator\PathFilterIterator::toRegex 39 0.0% 554 0.0% 122 0.0% 587 0.0% 125 0.0% 1,392 0.0% -18,928 -0.6% 0 0.0% 0 0.0%
array_chunk 36 0.0% 546 0.0% 546 0.0% 576 0.0% 576 0.0% 871,928 26.0% 871,928 26.0% 0 0.0% 0 0.0%
load::filesystem/Filesystem.php 1 0.0% 541 0.0% 541 0.0% 523 0.0% 523 0.0% 150,984 4.5% 150,984 4.5% 190,264 1.9% 190,264 1.9%
load::events/Dispatcher.php 1 0.0% 534 0.0% 534 0.0% 537 0.0% 537 0.0% 91,184 2.7% 91,184 2.7% 91,640 0.9% 91,640 0.9%
Symfony\Component\Yaml\Parser::parseBlock 2 0.0% 522 0.0% 9 0.0% 523 0.0% 10 0.0% 11,344 0.3% -632 -0.0% 0 0.0% 0 0.0%
load::parsedown-extra/ParsedownExtra.php 1 0.0% 518 0.0% 518 0.0% 520 0.0% 520 0.0% 66,456 2.0% 66,456 2.0% 95,096 0.9% 95,096 0.9%
Illuminate\Events\Dispatcher::__construct 365 0.0% 514 0.0% 514 0.0% 712 0.0% 712 0.0% 206,296 6.1% 206,296 6.1% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::doParse@1 2 0.0% 513 0.0% 97 0.0% 513 0.0% 81 0.0% 11,976 0.4% 1,624 0.0% 0 0.0% 0 0.0%
mb_strpos 365 0.0% 507 0.0% 507 0.0% 658 0.0% 658 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
ParsedownExtra::addDdElement 70 0.0% 479 0.0% 361 0.0% 517 0.0% 329 0.0% 138,408 4.1% 130,616 3.9% 3,720 0.0% 2,552 0.0%
load::collections/Arr.php 1 0.0% 479 0.0% 479 0.0% 481 0.0% 481 0.0% 75,528 2.2% 75,528 2.2% 100,288 1.0% 100,288 1.0%
Illuminate\View\Factory::flushSections 365 0.0% 463 0.0% 463 0.0% 613 0.0% 613 0.0% -1,886,472 -56.2% -1,886,472 -56.2% 0 0.0% 0 0.0%
opendir 39 0.0% 448 0.0% 448 0.0% 474 0.0% 474 0.0% 10,256 0.3% 10,256 0.3% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Unescaper::unescapeCharacter 350 0.0% 438 0.0% 438 0.0% 636 0.0% 636 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Output\Output::writeln 2 0.0% 435 0.0% 12 0.0% 436 0.0% 10 0.0% 87,904 2.6% 65,208 1.9% 54,184 0.5% 30,296 0.3%
Symfony\Component\Console\Output\Output::write 2 0.0% 423 0.0% 25 0.0% 426 0.0% 21 0.0% 22,696 0.7% 1,400 0.0% 23,888 0.2% 760 0.0%
get_defined_vars 365 0.0% 422 0.0% 422 0.0% 607 0.0% 607 0.0% 254,624 7.6% 254,624 7.6% 0 0.0% 0 0.0%
Illuminate\Support\Facades\Facade::setFacadeApplication 365 0.0% 417 0.0% 417 0.0% 639 0.0% 639 0.0% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
Illuminate\View\Compilers\Compiler::__construct 365 0.0% 414 0.0% 414 0.0% 661 0.0% 661 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Finder::normalizeDir 39 0.0% 413 0.0% 228 0.0% 430 0.0% 193 0.0% 1,864 0.1% 712 0.0% 0 0.0% 0 0.0%
load::src/Dot.php 1 0.0% 410 0.0% 410 0.0% 412 0.0% 412 0.0% 63,200 1.9% 63,200 1.9% 102,160 1.0% 102,160 1.0%
RecursiveDirectoryIterator::getSubPath 424 0.0% 376 0.0% 376 0.0% 602 0.0% 602 0.0% 12,952 0.4% 12,952 0.4% 0 0.0% 0 0.0%
Illuminate\View\Factory::setContainer 365 0.0% 366 0.0% 366 0.0% 550 0.0% 550 0.0% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
Illuminate\View\Factory::flushStacks 365 0.0% 361 0.0% 361 0.0% 534 0.0% 534 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
Illuminate\View\Engines\PhpEngine::__construct 365 0.0% 358 0.0% 358 0.0% 563 0.0% 563 0.0% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
Illuminate\Support\ServiceProvider::__construct 365 0.0% 353 0.0% 353 0.0% 590 0.0% 590 0.0% 584 0.0% 584 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::format 2 0.0% 342 0.0% 10 0.0% 343 0.0% 10 0.0% 18,056 0.5% -8,088 -0.2% 21,960 0.2% 320 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::formatAndWrap 2 0.0% 332 0.0% 70 0.0% 333 0.0% 53 0.0% 26,144 0.8% 1,176 0.0% 21,640 0.2% 1,208 0.0%
str_contains 353 0.0% 310 0.0% 310 0.0% 407 0.0% 407 0.0% 1,184 0.0% 1,184 0.0% 0 0.0% 0 0.0%
load::view/Factory.php 1 0.0% 309 0.0% 309 0.0% 311 0.0% 311 0.0% 59,120 1.8% 59,120 1.8% 46,584 0.5% 46,584 0.5%
load::support/ServiceProvider.php 1 0.0% 274 0.0% 274 0.0% 276 0.0% 276 0.0% 54,056 1.6% 54,056 1.6% 0 0.0% 0 0.0%
Symfony\Component\Finder\Finder::depth 1 0.0% 259 0.0% 26 0.0% 259 0.0% 22 0.0% 19,768 0.6% -5,976 -0.2% 0 0.0% 0 0.0%
load::src/Blade.php 1 0.0% 239 0.0% 239 0.0% 240 0.0% 240 0.0% 22,592 0.7% 22,592 0.7% 0 0.0% 0 0.0%
load::view/View.php 1 0.0% 235 0.0% 235 0.0% 235 0.0% 235 0.0% 41,848 1.2% 41,848 1.2% 0 0.0% 0 0.0%
Symfony\Component\Finder\Glob::toRegex 39 0.0% 222 0.0% 222 0.0% 243 0.0% 243 0.0% 4,376 0.1% 4,376 0.1% 0 0.0% 0 0.0%
FilterIterator::rewind@4 1 0.0% 213 0.0% 42 0.0% 193 0.0% 13 0.0% 29,008 0.9% 816 0.0% 25,512 0.3% 0 0.0%
load::view/FileViewFinder.php 1 0.0% 197 0.0% 197 0.0% 198 0.0% 198 0.0% 33,888 1.0% 33,888 1.0% 27,544 0.3% 27,544 0.3%
Symfony\Component\Yaml\Parser::getNextEmbedBlock 2 0.0% 186 0.0% 69 0.0% 187 0.0% 51 0.0% 8,896 0.3% 1,768 0.1% 0 0.0% 0 0.0%
load::Facades/Facade.php 1 0.0% 185 0.0% 185 0.0% 187 0.0% 187 0.0% 29,496 0.9% 29,496 0.9% 0 0.0% 0 0.0%
load::blade/9ae4ffe74ef6586f1e9fc2a4b2af604c10cee88d.php 2 0.0% 173 0.0% 173 0.0% 176 0.0% 176 0.0% 14,576 0.4% 14,576 0.4% 0 0.0% 0 0.0%
base_path 1 0.0% 166 0.0% 58 0.0% 167 0.0% 53 0.0% 12,776 0.4% -1,312 -0.0% 22,968 0.2% 0 0.0%
load::Entries/Entry.php 1 0.0% 166 0.0% 166 0.0% 168 0.0% 168 0.0% 19,440 0.6% 19,440 0.6% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\FileTypeFilterIterator::__construct 39 0.0% 162 0.0% 119 0.0% 193 0.0% 122 0.0% 5,056 0.2% 696 0.0% 0 0.0% 0 0.0%
closedir 39 0.0% 157 0.0% 157 0.0% 186 0.0% 186 0.0% -8,152 -0.2% -8,152 -0.2% 0 0.0% 0 0.0%
load::Concerns/ManagesComponents.php 1 0.0% 151 0.0% 151 0.0% 153 0.0% 153 0.0% 21,424 0.6% 21,424 0.6% 0 0.0% 0 0.0%
load::Iterator/RecursiveDirectoryIterator.php 1 0.0% 149 0.0% 149 0.0% 150 0.0% 150 0.0% 24,248 0.7% 24,248 0.7% 0 0.0% 0 0.0%
load::Concerns/CompilesEchos.php 1 0.0% 147 0.0% 147 0.0% 148 0.0% 148 0.0% 29,432 0.9% 29,432 0.9% 20,616 0.2% 20,616 0.2%
load::Concerns/ManagesEvents.php 1 0.0% 141 0.0% 141 0.0% 143 0.0% 143 0.0% 25,232 0.8% 25,232 0.8% 0 0.0% 0 0.0%
load::Concerns/ManagesLayouts.php 1 0.0% 141 0.0% 141 0.0% 143 0.0% 143 0.0% 25,856 0.8% 25,856 0.8% 4,448 0.0% 4,448 0.0%
load::Collections/Collection.php 1 0.0% 139 0.0% 139 0.0% 141 0.0% 141 0.0% 9,552 0.3% 9,552 0.3% 47,592 0.5% 47,592 0.5%
Illuminate\View\Factory::popLoop 36 0.0% 139 0.0% 100 0.0% 157 0.0% 101 0.0% 2,368 0.1% 1,816 0.1% 0 0.0% 0 0.0%
load::yaml/Unescaper.php 1 0.0% 134 0.0% 134 0.0% 136 0.0% 136 0.0% 21,856 0.7% 21,856 0.7% 42,720 0.4% 42,720 0.4%
Symfony\Component\Console\Formatter\OutputFormatterStyle::apply 6 0.0% 133 0.0% 22 0.0% 135 0.0% 22 0.0% 8,048 0.2% 1,424 0.0% 9,440 0.1% 728 0.0%
Symfony\Component\Finder\Finder::name 39 0.0% 133 0.0% 104 0.0% 164 0.0% 112 0.0% 16,464 0.5% 15,912 0.5% 0 0.0% 0 0.0%
load::Concerns/CompilesComponents.php 1 0.0% 132 0.0% 132 0.0% 134 0.0% 134 0.0% 28,208 0.8% 28,208 0.8% 0 0.0% 0 0.0%
load::Concerns/ManagesStacks.php 1 0.0% 130 0.0% 130 0.0% 131 0.0% 131 0.0% 23,592 0.7% 23,592 0.7% 21,464 0.2% 21,464 0.2%
load::view/ViewServiceProvider.php 1 0.0% 128 0.0% 128 0.0% 130 0.0% 130 0.0% 26,328 0.8% 26,328 0.8% 0 0.0% 0 0.0%
Symfony\Component\Finder\Finder::files 39 0.0% 127 0.0% 57 0.0% 165 0.0% 93 0.0% 6,240 0.2% -1,248 -0.0% 0 0.0% 0 0.0%
load::Concerns/CompilesConditionals.php 1 0.0% 125 0.0% 125 0.0% 126 0.0% 126 0.0% 27,528 0.8% 27,528 0.8% 4,120 0.0% 4,120 0.0%
load::finder/Glob.php 1 0.0% 121 0.0% 121 0.0% 123 0.0% 123 0.0% 16,424 0.5% 16,424 0.5% 15,208 0.1% 15,208 0.1%
stream_get_meta_data 39 0.0% 114 0.0% 114 0.0% 137 0.0% 137 0.0% 30,864 0.9% 30,864 0.9% 0 0.0% 0 0.0%
Symfony\Component\Console\Color::apply 6 0.0% 109 0.0% 29 0.0% 110 0.0% 25 0.0% 6,040 0.2% -7,224 -0.2% 8,128 0.1% 640 0.0%
load::Traits/Macroable.php 1 0.0% 103 0.0% 103 0.0% 104 0.0% 104 0.0% 12,640 0.4% 12,640 0.4% 0 0.0% 0 0.0%
load::Concerns/CompilesLoops.php 1 0.0% 101 0.0% 101 0.0% 102 0.0% 102 0.0% 23,776 0.7% 23,776 0.7% 20,488 0.2% 20,488 0.2%
load::Iterator/ExcludeDirectoryFilterIterator.php 1 0.0% 100 0.0% 100 0.0% 102 0.0% 102 0.0% 15,472 0.5% 15,472 0.5% 10,080 0.1% 10,080 0.1%
load::Engines/CompilerEngine.php 1 0.0% 100 0.0% 100 0.0% 101 0.0% 101 0.0% 12,248 0.4% 12,248 0.4% 0 0.0% 0 0.0%
FilterIterator::next@4 4 0.0% 99 0.0% 35 0.0% 100 0.0% 28 0.0% 28,424 0.8% 544 0.0% 0 0.0% 0 0.0%
load::Iterator/MultiplePcreFilterIterator.php 1 0.0% 97 0.0% 97 0.0% 97 0.0% 97 0.0% 14,456 0.4% 14,456 0.4% 13,104 0.1% 13,104 0.1%
Symfony\Component\Console\Formatter\OutputFormatterStyleStack::pop 2 0.0% 96 0.0% 21 0.0% 98 0.0% 19 0.0% 1,872 0.1% -840 -0.0% 3,240 0.0% 320 0.0%
load::finder/SplFileInfo.php 1 0.0% 94 0.0% 94 0.0% 95 0.0% 95 0.0% 12,592 0.4% 12,592 0.4% 25,512 0.3% 25,512 0.3%
load::blade/5c40e2d7dec2e7b0a38e187336fda0fffd2f643a.php 2 0.0% 94 0.0% 94 0.0% 98 0.0% 98 0.0% 8,072 0.2% 8,072 0.2% 0 0.0% 0 0.0%
load::Traits/ReflectsClosures.php 1 0.0% 93 0.0% 93 0.0% 94 0.0% 94 0.0% 12,688 0.4% 12,688 0.4% 0 0.0% 0 0.0%
RecursiveIteratorIterator::__construct 40 0.0% 91 0.0% 91 0.0% 117 0.0% 117 0.0% 7,280 0.2% 7,280 0.2% 752 0.0% 752 0.0%
load::Container/Container.php 1 0.0% 91 0.0% 91 0.0% 92 0.0% 92 0.0% 20,232 0.6% 20,232 0.6% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::applyCurrentStyle 6 0.0% 90 0.0% 22 0.0% 94 0.0% 23 0.0% 9,440 0.3% 856 0.0% 9,584 0.1% 1,112 0.0%
load::Definition/ValueDefinition.php 1 0.0% 89 0.0% 89 0.0% 91 0.0% 91 0.0% 7,616 0.2% 7,616 0.2% 22,968 0.2% 22,968 0.2%
load::Concerns/ManagesLoops.php 1 0.0% 89 0.0% 89 0.0% 90 0.0% 90 0.0% 12,720 0.4% 12,720 0.4% 2,432 0.0% 2,432 0.0%
load::Comparator/NumberComparator.php 1 0.0% 83 0.0% 83 0.0% 85 0.0% 85 0.0% 12,480 0.4% 12,480 0.4% 0 0.0% 0 0.0%
Symfony\Component\Finder\Comparator\NumberComparator::__construct 1 0.0% 82 0.0% 13 0.0% 83 0.0% 12 0.0% 3,760 0.1% 920 0.0% 0 0.0% 0 0.0%
value 72 0.0% 80 0.0% 80 0.0% 106 0.0% 106 0.0% 536 0.0% 536 0.0% 0 0.0% 0 0.0%
load::yaml/Yaml.php 1 0.0% 77 0.0% 77 0.0% 79 0.0% 79 0.0% 11,808 0.4% 11,808 0.4% 0 0.0% 0 0.0%
filter_var 36 0.0% 74 0.0% 74 0.0% 101 0.0% 101 0.0% 1,720 0.1% 1,720 0.1% 0 0.0% 0 0.0%
load::Compilers/Compiler.php 1 0.0% 73 0.0% 73 0.0% 74 0.0% 74 0.0% 9,848 0.3% 9,848 0.3% 0 0.0% 0 0.0%
load::src/YamlFrontMatter.php 1 0.0% 72 0.0% 72 0.0% 75 0.0% 75 0.0% 7,336 0.2% 7,336 0.2% 0 0.0% 0 0.0%
load::Iterator/FileTypeFilterIterator.php 1 0.0% 70 0.0% 70 0.0% 72 0.0% 72 0.0% 7,488 0.2% 7,488 0.2% 0 0.0% 0 0.0%
load::Engines/EngineResolver.php 1 0.0% 70 0.0% 70 0.0% 72 0.0% 72 0.0% 7,112 0.2% 7,112 0.2% 0 0.0% 0 0.0%
load::Comparator/Comparator.php 1 0.0% 68 0.0% 68 0.0% 69 0.0% 69 0.0% 9,504 0.3% 9,504 0.3% 0 0.0% 0 0.0%
load::Engines/PhpEngine.php 1 0.0% 66 0.0% 66 0.0% 68 0.0% 68 0.0% 9,080 0.3% 9,080 0.3% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::isNextLineIndented 2 0.0% 65 0.0% 24 0.0% 67 0.0% 18 0.0% 13,408 0.4% 840 0.0% 0 0.0% 0 0.0%
load::View/Factory.php 1 0.0% 63 0.0% 63 0.0% 64 0.0% 64 0.0% 73,440 2.2% 73,440 2.2% 61,448 0.6% 61,448 0.6%
load::Concerns/CompilesLayouts.php 1 0.0% 63 0.0% 63 0.0% 64 0.0% 64 0.0% 12,000 0.4% 12,000 0.4% 11,648 0.1% 11,648 0.1%
load::src/Document.php 1 0.0% 62 0.0% 62 0.0% 63 0.0% 63 0.0% 5,520 0.2% 5,520 0.2% 2,440 0.0% 2,440 0.0%
load::view/ViewFinderInterface.php 1 0.0% 55 0.0% 55 0.0% 57 0.0% 57 0.0% 6,560 0.2% 6,560 0.2% 0 0.0% 0 0.0%
Symfony\Component\Console\Output\StreamOutput::doWrite 2 0.0% 53 0.0% 15 0.0% 54 0.0% 27 0.0% 2,072 0.1% 936 0.0% 0 0.0% 0 0.0%
Saaze\Collections\CollectionManager::sortCollections 1 0.0% 53 0.0% 4 0.0% 53 0.0% 4 0.0% 6,992 0.2% 728 0.0% 0 0.0% 0 0.0%
load::Iterator/PathFilterIterator.php 1 0.0% 52 0.0% 52 0.0% 53 0.0% 53 0.0% 7,208 0.2% 7,208 0.2% 4,288 0.0% 4,288 0.0%
load::Events/Dispatcher.php 1 0.0% 51 0.0% 51 0.0% 52 0.0% 52 0.0% 7,896 0.2% 7,896 0.2% 0 0.0% 0 0.0%
Symfony\Component\Finder\Finder::__construct 39 0.0% 49 0.0% 49 0.0% 83 0.0% 83 0.0% 1,184 0.0% 1,184 0.0% 0 0.0% 0 0.0%
load::Iterator/DepthRangeFilterIterator.php 1 0.0% 49 0.0% 49 0.0% 51 0.0% 51 0.0% 6,888 0.2% 6,888 0.2% 6,240 0.1% 6,240 0.1%
uasort 1 0.0% 49 0.0% 5 0.0% 49 0.0% 4 0.0% 6,264 0.2% 632 0.0% 0 0.0% 0 0.0%
load::Concerns/CompilesIncludes.php 1 0.0% 49 0.0% 49 0.0% 49 0.0% 49 0.0% 9,696 0.3% 9,696 0.3% 4,960 0.0% 4,960 0.0%
load::Concerns/CompilesAuthorizations.php 1 0.0% 47 0.0% 47 0.0% 49 0.0% 49 0.0% 10,096 0.3% 10,096 0.3% 0 0.0% 0 0.0%
load::view/ViewName.php 1 0.0% 47 0.0% 47 0.0% 48 0.0% 48 0.0% 4,376 0.1% 4,376 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesClasses.php 1 0.0% 45 0.0% 45 0.0% 29 0.0% 29 0.0% 3,944 0.1% 3,944 0.1% 0 0.0% 0 0.0%
Saaze\Collections\CollectionManager::Saaze\Collections\{closure} 1 0.0% 44 0.0% 12 0.0% 45 0.0% 9 0.0% 5,632 0.2% -72 -0.0% 0 0.0% 0 0.0%
load::Content/MarkdownContentParser.php 1 0.0% 44 0.0% 44 0.0% 47 0.0% 47 0.0% 3,768 0.1% 3,768 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesComments.php 1 0.0% 44 0.0% 44 0.0% 45 0.0% 45 0.0% 4,120 0.1% 4,120 0.1% 0 0.0% 0 0.0%
Symfony\Component\Console\Color::set 6 0.0% 43 0.0% 30 0.0% 45 0.0% 24 0.0% 5,992 0.2% 2,968 0.1% 3,592 0.0% 1,528 0.0%
Saaze\Commands\BuildCommand::humanSize 1 0.0% 43 0.0% 13 0.0% 44 0.0% 11 0.0% 3,048 0.1% 840 0.0% 0 0.0% 0 0.0%
load::Iterator/FilenameFilterIterator.php 1 0.0% 41 0.0% 41 0.0% 42 0.0% 42 0.0% 6,384 0.2% 6,384 0.2% 8,280 0.1% 8,280 0.1%
load::Concerns/CompilesJson.php 1 0.0% 41 0.0% 41 0.0% 41 0.0% 41 0.0% 6,216 0.2% 6,216 0.2% 4,752 0.0% 4,752 0.0%
load::Concerns/CompilesTranslations.php 1 0.0% 41 0.0% 41 0.0% 42 0.0% 42 0.0% 5,888 0.2% 5,888 0.2% 928 0.0% 928 0.0%
SplFileInfo::getPath 39 0.0% 40 0.0% 40 0.0% 63 0.0% 63 0.0% 3,088 0.1% 3,088 0.1% 0 0.0% 0 0.0%
load::Collections/CollectionParser.php 1 0.0% 38 0.0% 38 0.0% 40 0.0% 40 0.0% 3,680 0.1% 3,680 0.1% 13,168 0.1% 13,168 0.1%
ceil 38 0.0% 38 0.0% 38 0.0% 62 0.0% 62 0.0% 1,080 0.0% 1,080 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Color::unset 6 0.0% 37 0.0% 26 0.0% 40 0.0% 23 0.0% 7,272 0.2% 2,776 0.1% 3,896 0.0% 616 0.0%
load::Interfaces/EntryInterface.php 1 0.0% 37 0.0% 37 0.0% 38 0.0% 38 0.0% 5,096 0.2% 5,096 0.2% 0 0.0% 0 0.0%
load::Entries/EntryParser.php 1 0.0% 37 0.0% 37 0.0% 39 0.0% 39 0.0% 4,208 0.1% 4,208 0.1% 0 0.0% 0 0.0%
load::Concerns/ManagesTranslations.php 1 0.0% 37 0.0% 37 0.0% 38 0.0% 38 0.0% 5,240 0.2% 5,240 0.2% 0 0.0% 0 0.0%
load::Concerns/CompilesInjections.php 1 0.0% 37 0.0% 37 0.0% 38 0.0% 38 0.0% 4,832 0.1% 4,832 0.1% 512 0.0% 512 0.0%
load::Interfaces/CollectionInterface.php 1 0.0% 33 0.0% 33 0.0% 33 0.0% 33 0.0% 4,136 0.1% 4,136 0.1% 0 0.0% 0 0.0%
load::Compilers/CompilerInterface.php 1 0.0% 30 0.0% 30 0.0% 31 0.0% 31 0.0% 3,752 0.1% 3,752 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesErrors.php 1 0.0% 30 0.0% 30 0.0% 31 0.0% 31 0.0% 4,656 0.1% 4,656 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesStacks.php 1 0.0% 28 0.0% 28 0.0% 29 0.0% 29 0.0% 6,288 0.2% 6,288 0.2% 0 0.0% 0 0.0%
load::View/View.php 1 0.0% 28 0.0% 28 0.0% 29 0.0% 29 0.0% 3,808 0.1% 3,808 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesHelpers.php 1 0.0% 27 0.0% 27 0.0% 28 0.0% 28 0.0% 5,352 0.2% 5,352 0.2% 0 0.0% 0 0.0%
load::Support/Htmlable.php 1 0.0% 27 0.0% 27 0.0% 29 0.0% 29 0.0% 2,352 0.1% 2,352 0.1% 0 0.0% 0 0.0%
load::Concerns/CompilesRawPhp.php 1 0.0% 26 0.0% 26 0.0% 27 0.0% 27 0.0% 4,144 0.1% 4,144 0.1% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\Input::getOption 1 0.0% 25 0.0% 17 0.0% 26 0.0% 10 0.0% 4,368 0.1% 824 0.0% 0 0.0% 0 0.0%
load::View/Engine.php 1 0.0% 25 0.0% 25 0.0% 27 0.0% 27 0.0% 2,768 0.1% 2,768 0.1% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\DepthRangeFilterIterator::accept 4 0.0% 23 0.0% 16 0.0% 26 0.0% 18 0.0% 2,560 0.1% 1,328 0.0% 0 0.0% 0 0.0%
DI\Definition\ValueDefinition::resolve 5 0.0% 22 0.0% 17 0.0% 24 0.0% 14 0.0% 4,048 0.1% 2,824 0.1% 0 0.0% 0 0.0%
fwrite 2 0.0% 22 0.0% 22 0.0% 24 0.0% 24 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Symfony\Component\Yaml\Parser::isStringUnIndentedCollectionItem 4 0.0% 21 0.0% 16 0.0% 25 0.0% 16 0.0% 1,912 0.1% 760 0.0% 0 0.0% 0 0.0%
load::Interfaces/ContentParserInterface.php 1 0.0% 20 0.0% 20 0.0% 21 0.0% 21 0.0% 2,664 0.1% 2,664 0.1% 0 0.0% 0 0.0%
load::Interfaces/EntryParserInterface.php 1 0.0% 20 0.0% 20 0.0% 21 0.0% 21 0.0% 2,576 0.1% 2,576 0.1% 0 0.0% 0 0.0%
load::Support/Renderable.php 1 0.0% 20 0.0% 20 0.0% 21 0.0% 21 0.0% 2,416 0.1% 2,416 0.1% 0 0.0% 0 0.0%
log 1 0.0% 20 0.0% 20 0.0% 20 0.0% 20 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
load::Interfaces/CollectionParserInterface.php 1 0.0% 19 0.0% 19 0.0% 20 0.0% 20 0.0% 2,656 0.1% 2,656 0.1% 1,272 0.0% 1,272 0.0%
fflush 2 0.0% 16 0.0% 16 0.0% 3 0.0% 3 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
ParsedownExtra::__construct 1 0.0% 14 0.0% 9 0.0% 15 0.0% 8 0.0% 5,384 0.2% 3,528 0.1% 0 0.0% 0 0.0%
sprintf 12 0.0% 12 0.0% 12 0.0% 16 0.0% 16 0.0% 4,944 0.1% 4,944 0.1% 2,304 0.0% 2,304 0.0%
array_walk 10 0.0% 11 0.0% 11 0.0% 21 0.0% 21 0.0% 1,088 0.0% 1,088 0.0% 0 0.0% 0 0.0%
DI\Definition\ValueDefinition::replaceNestedDefinitions 5 0.0% 10 0.0% 10 0.0% 15 0.0% 15 0.0% 2,856 0.1% 2,856 0.1% 0 0.0% 0 0.0%
Symfony\Component\Finder\Iterator\DepthRangeFilterIterator::__construct 1 0.0% 10 0.0% 8 0.0% 11 0.0% 7 0.0% 2,088 0.1% 760 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::createStyleFromString 4 0.0% 8 0.0% 8 0.0% 10 0.0% 10 0.0% 664 0.0% 664 0.0% 664 0.0% 664 0.0%
pow 1 0.0% 8 0.0% 8 0.0% 9 0.0% 9 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Saaze\Commands\BuildCommand::stopXhprof 1 0.0% 8 0.0% 5 0.0% 8 0.0% 4 0.0% 1,184 0.0% 616 0.0% 0 0.0% 0 0.0%
DI\Definition\ValueDefinition::__construct 5 0.0% 6 0.0% 6 0.0% 9 0.0% 9 0.0% 2,792 0.1% 2,792 0.1% 0 0.0% 0 0.0%
ctype_digit 6 0.0% 6 0.0% 6 0.0% 8 0.0% 8 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
number_format 1 0.0% 6 0.0% 6 0.0% 7 0.0% 7 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\InputDefinition::getOption 1 0.0% 5 0.0% 4 0.0% 5 0.0% 3 0.0% 1,328 0.0% 696 0.0% 0 0.0% 0 0.0%
DI\Definition\ValueDefinition::setName 5 0.0% 5 0.0% 5 0.0% 7 0.0% 7 0.0% 2,760 0.1% 2,760 0.1% 0 0.0% 0 0.0%
DI\Definition\ValueDefinition::getName 5 0.0% 5 0.0% 5 0.0% 7 0.0% 7 0.0% 2,760 0.1% 2,760 0.1% 0 0.0% 0 0.0%
DI\Definition\ValueDefinition::getValue 5 0.0% 5 0.0% 5 0.0% 10 0.0% 10 0.0% 1,224 0.0% 1,224 0.0% 0 0.0% 0 0.0%
ReflectionClass::isInstantiable 5 0.0% 5 0.0% 5 0.0% 6 0.0% 6 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
ReflectionParameter::getType 5 0.0% 5 0.0% 5 0.0% 5 0.0% 5 0.0% 864 0.0% 864 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatterStyleStack::getCurrent 2 0.0% 4 0.0% 4 0.0% 6 0.0% 6 0.0% 664 0.0% 664 0.0% 664 0.0% 664 0.0%
microtime 2 0.0% 4 0.0% 4 0.0% 4 0.0% 4 0.0% 520 0.0% 520 0.0% 0 0.0% 0 0.0%
IteratorIterator::getInnerIterator 4 0.0% 4 0.0% 4 0.0% 4 0.0% 4 0.0% 600 0.0% 600 0.0% 0 0.0% 0 0.0%
ReflectionNamedType::getName 3 0.0% 4 0.0% 4 0.0% 4 0.0% 4 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Formatter\OutputFormatterStyleStack::push 2 0.0% 3 0.0% 3 0.0% 4 0.0% 4 0.0% 1,416 0.0% 1,416 0.0% 1,040 0.0% 1,040 0.0%
RecursiveIteratorIterator::getDepth 4 0.0% 3 0.0% 3 0.0% 4 0.0% 4 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
ReflectionNamedType::isBuiltin 3 0.0% 3 0.0% 3 0.0% 3 0.0% 3 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
array_unshift 2 0.0% 3 0.0% 3 0.0% 3 0.0% 3 0.0% 1,304 0.0% 1,304 0.0% 0 0.0% 0 0.0%
xhprof_disable 1 0.0% 3 0.0% 3 0.0% 4 0.0% 4 0.0% 568 0.0% 568 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\InputDefinition::hasOption 2 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 1,264 0.0% 1,264 0.0% 0 0.0% 0 0.0%
is_iterable 2 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 568 0.0% 568 0.0% 568 0.0% 568 0.0%
Symfony\Component\Console\Formatter\OutputFormatter::isDecorated 2 0.0% 2 0.0% 2 0.0% 2 0.0% 2 0.0% 664 0.0% 664 0.0% 664 0.0% 664 0.0%
getenv 2 0.0% 2 0.0% 2 0.0% 3 0.0% 3 0.0% 584 0.0% 584 0.0% 584 0.0% 584 0.0%
array_reverse 2 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 1,336 0.0% 1,336 0.0% 624 0.0% 624 0.0%
Symfony\Component\Finder\Comparator\Comparator::setTarget 1 0.0% 2 0.0% 2 0.0% 2 0.0% 2 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Comparator\Comparator::setOperator 1 0.0% 2 0.0% 2 0.0% 2 0.0% 2 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
ReflectionMethod::isPublic 2 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
version_compare 1 0.0% 2 0.0% 2 0.0% 4 0.0% 4 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\InputDefinition::hasNegation 1 0.0% 1 0.0% 1 0.0% 7 0.0% 7 0.0% 952 0.0% 952 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Input\InputOption::getDefault 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Symfony\Component\Console\Output\Output::getVerbosity 2 0.0% 1 0.0% 1 0.0% 4 0.0% 4 0.0% 600 0.0% 600 0.0% 600 0.0% 600 0.0%
Symfony\Component\Finder\Comparator\Comparator::getOperator 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
Symfony\Component\Finder\Comparator\Comparator::getTarget 1 0.0% 1 0.0% 1 0.0% 1 0.0% 1 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
RecursiveIteratorIterator::setMaxDepth 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 632 0.0% 632 0.0% 0 0.0% 0 0.0%
memory_get_peak_usage 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 528 0.0% 528 0.0% 0 0.0% 0 0.0%
floor 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%
round 1 0.0% 1 0.0% 1 0.0% 2 0.0% 2 0.0% 552 0.0% 552 0.0% 0 0.0% 0 0.0%