Skip to content

Commit f500876

Browse files
Use the query directly, select is now raw
1 parent 07c401b commit f500876

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Checkers/Database.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ protected function rawQuery()
5151
{
5252
Timer::start();
5353

54-
DB::connection($this->getConnectionName())->select(
55-
DB::raw($this->target->query)
56-
);
54+
DB::connection($this->getConnectionName())->select($this->target->query);
5755

5856
$took = round(Timer::stop(), 5);
5957
$tookHuman = "{$took}s";

0 commit comments

Comments
 (0)