JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrcheckBindings($binding); $binding = '[' . implode(',', $binding) . ']'; } if (is_object($binding)) { $binding = json_encode($binding); } } return $bindings; } /** * Format a source object. * * @param object|null $source If the backtrace is disabled, the $source will be null. * @return string */ public function formatSource($source, $short = false) { if (! is_object($source)) { return ''; } $parts = []; if (!$short && $source->namespace) { $parts['namespace'] = $source->namespace . '::'; } $parts['name'] = $short ? basename($source->name) : $source->name; $parts['line'] = ':' . $source->line; return implode($parts); } }