event = $event; } /** * @return string */ protected function set($text) { return $this->output = $text; } /** * @return string */ public function get() { return $this->output; } /** * @void */ public function clear() { $this->set(''); } /** * Add line to indicate new query * * @void */ public function newQuery() { $this->append('----------------- NEW Query -----------------'); } /** * Add empty line * * @void */ public function spaceLine() { $this->append("\n \n"); } /** * Add sql query data * * @return void */ public function sql() { $fullQuery = vsprintf(str_replace(['%', '?'], ['%%', "'%s'"], $this->event->sql), $this->event->bindings); $result = $this->event->connectionName . ' (' . $this->event->time . '): ' . $fullQuery; $this->append($result); } /** * @param $output * * @return string */ private function append($output) { return $this->output .= $output; } }