Skip to content

Commit a22dbb4

Browse files
author
wamilomarov
committed
StyleCI fix
1 parent 103eba6 commit a22dbb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ExceptionController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function grid(): Grid
7777
$filter->disableIdFilter();
7878
$filter->like('type');
7979
$filter->like('message');
80-
$filter->between("created_at")->datetime();
80+
$filter->between('created_at')->datetime();
8181
});
8282

8383
$grid->disableCreation();

src/Reporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function reportException(Throwable $exception)
5757
'headers' => Arr::except($this->request->headers->all(), 'cookie'),
5858

5959
// Exception info.
60-
'type' => get_class($exception),
60+
'type' => get_class($exception),
6161
'code' => $exception->getCode(),
6262
'file' => $exception->getFile(),
6363
'line' => $exception->getLine(),

0 commit comments

Comments
 (0)