Code Duplication    Length = 9-9 lines in 2 locations

src/kint/KintBootup.php 2 locations

@@ 58-66 (lines=9) @@
55
     *
56
     * @return string
57
     */
58
    function dd()
59
    {
60
      if (!Kint::enabled()) {
61
        return '';
62
      }
63
64
      call_user_func_array(array('kint\Kint', 'dump'), func_get_args());
65
      exit();
66
    }
67
68
    /**
69
     * Alias of Kint::dump()
@@ 74-82 (lines=9) @@
71
     *
72
     * @return string
73
     */
74
    function ddd()
75
    {
76
      if (!Kint::enabled()) {
77
        return '';
78
      }
79
80
      call_user_func_array(array('kint\Kint', 'dump'), func_get_args());
81
      exit();
82
    }
83
84
    /**
85
     * Alias of Kint::dump(), however the output is delayed until the end of the script