PMA\libraries\Error::getBacktrace PHP Method

getBacktrace() public method

The same can be done by not passing $count at all.
public getBacktrace ( integer $count ) : array
$count integer Number of stack frames.
return array PMA\libraries\Error::$_backtrace
    public function getBacktrace($count = -1)
    {
        if ($count != -1) {
            return array_slice($this->backtrace, 0, $count);
        }
        return $this->backtrace;
    }