ci4

Форк
0
/
kint_helper.php 
92 строки · 1.9 Кб
1
<?php
2

3
declare(strict_types=1);
4

5
/**
6
 * This file is part of CodeIgniter 4 framework.
7
 *
8
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
9
 *
10
 * For the full copyright and license information, please view
11
 * the LICENSE file that was distributed with this source code.
12
 */
13

14
// This helper is autoloaded by CodeIgniter.
15

16
if (! function_exists('dd')) {
17
    if (class_exists(Kint::class)) {
18
        /**
19
         * Prints a Kint debug report and exits.
20
         *
21
         * @param array $vars
22
         *
23
         * @return never
24
         *
25
         * @codeCoverageIgnore Can't be tested ... exits
26
         */
27
        function dd(...$vars): void
28
        {
29
            // @codeCoverageIgnoreStart
30
            Kint::$aliases[] = 'dd';
31
            Kint::dump(...$vars);
32

33
            exit;
34
            // @codeCoverageIgnoreEnd
35
        }
36
    } else {
37
        // In case that Kint is not loaded.
38
        /**
39
         * dd function
40
         *
41
         * @param array $vars
42
         *
43
         * @return int
44
         */
45
        function dd(...$vars)
46
        {
47
            return 0;
48
        }
49
    }
50
}
51

52
if (! function_exists('d') && ! class_exists(Kint::class)) {
53
    // In case that Kint is not loaded.
54
    /**
55
     * d function
56
     *
57
     * @param array $vars
58
     *
59
     * @return int
60
     */
61
    function d(...$vars)
62
    {
63
        return 0;
64
    }
65
}
66

67
if (! function_exists('trace')) {
68
    if (class_exists(Kint::class)) {
69
        /**
70
         * Provides a backtrace to the current execution point, from Kint.
71
         */
72
        /**
73
         * trace function
74
         */
75
        function trace(): void
76
        {
77
            Kint::$aliases[] = 'trace';
78
            Kint::trace();
79
        }
80
    } else {
81
        // In case that Kint is not loaded.
82
        /**
83
         * trace function
84
         *
85
         * @return int
86
         */
87
        function trace()
88
        {
89
            return 0;
90
        }
91
    }
92
}
93

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.