# fluent-support/1.5.2/boot/globals.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.5.2. 24 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.5.2/code/boot/globals.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.5.2/raw/boot/globals.php
- Modified: 2021-11-12T14:57:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-support/1.5.2/code/boot/globals.php#L10-L20`.

```php
<?php

/**
 ***** DO NOT CALL ANY FUNCTIONS DIRECTLY FROM THIS FILE ******
 *
 * This file will be loaded even before the framework is loaded
 * so the $app is not available here, only declare functions here.
 */


is_readable(__DIR__ . '/globals_dev.php') && include 'globals_dev.php';

if (!function_exists('dd')) {
    function dd()
    {
        foreach (func_get_args() as $arg) {
            echo "<pre>";
            print_r($arg);
            echo "</pre>";
        }
        die();
    }
}

```
