Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Illuminate/Database/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,8 @@ public function raw($value)
* @param string|float|int|bool|null $value
* @param bool $binary
* @return string
*
* @throws \RuntimeException
*/
public function escape($value, $binary = false)
{
Expand Down Expand Up @@ -1154,6 +1156,8 @@ protected function escapeBool($value)
*
* @param string $value
* @return string
*
* @throws \RuntimeException
*/
protected function escapeBinary($value)
{
Expand Down
Loading