forked from beyondcode/laravel-query-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be3f050
commit a06a15d
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
namespace BeyondCode\QueryDetector\Outputs; | ||
|
||
use Illuminate\Support\Collection; | ||
use Symfony\Component\HttpFoundation\Response; | ||
use Illuminate\Http\JsonResponse; | ||
|
||
class Json implements Output | ||
{ | ||
|
||
public function output(Collection $detectedQueries, Response $response) | ||
{ | ||
if ($response instanceof JsonResponse) { | ||
$data = $response->getData(true); | ||
$data['warning_queries'] = $detectedQueries; | ||
$response->setData($data); | ||
} | ||
} | ||
} |