PHP Classes

File: src/Helpers/global/breadcrumbs_functions.php

Recommend this page to a friend!
  Classes of Andrey Iatsenko   PHP MonoLog Processor   src/Helpers/global/breadcrumbs_functions.php   Download  
File: src/Helpers/global/breadcrumbs_functions.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP MonoLog Processor
Improve information logged on error using Monolog
Author: By
Last change:
Date: 4 months ago
Size: 274 bytes
 

Contents

Class file image Download
<?php

if (!function_exists('get_breadcrumbs')) {
   
/**
     * Get all breadcrumbs current execution
     *
     * @return array<mixed>
     */
   
function get_breadcrumbs(): array
    {
        return \
MonoProcessor\Breadcrumbs::getInstance()->getBreadcrumbs();
    }
}