🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:QueryExecuted.php
<?php namespace Illuminate\Database\Events; class QueryExecuted { /** * The SQL query that was executed. * * @var string */ public $sql; /** * The array of query bindings. * * @var array */ public $bindings; /** * The number of milliseconds it took to execute the query. * * @var float */ public $time; /** * The database connection instance. * * @var \Illuminate\Database\Connection */ public $connection; /** * The database connection name. * * @var string */ public $connectionName; /** * The PDO read / write type for the executed query. * * @var null|'read'|'write' */ public $readWriteType; /** * Create a new event instance. * * @param string $sql * @param array $bindings * @param float|null $time * @param \Illuminate\Database\Connection $connection * @param null|'read'|'write' $readWriteType */ public function __construct($sql, $bindings, $time, $connection, $readWriteType = null) { $this->sql = $sql; $this->time = $time; $this->bindings = $bindings; $this->connection = $connection; $this->connectionName = $connection->getName(); $this->readWriteType = $readWriteType; } /** * Get the raw SQL representation of the query with embedded bindings. * * @return string */ public function toRawSql() { return $this->connection ->query() ->getGrammar() ->substituteBindingsIntoRawSql($this->sql, $this->connection->prepareBindings($this->bindings)); } }
Save Changes
Cancel
Create New File
Create New Folder