Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvanassche authored and actions-user committed Nov 10, 2021
1 parent e461170 commit d9c57de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Actions/ShareReportAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ protected function getCustomContextGroups(array $contextItems): array
'context',
'logs',
'dumps',
'exception'
'exception',
];

return Collection::make($contextItems)
Expand Down
2 changes: 1 addition & 1 deletion src/IgnitionServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
use Facade\Ignition\LogRecorder\LogRecorder;
use Facade\Ignition\Middleware\AddDumps;
use Facade\Ignition\Middleware\AddEnvironmentInformation;
use Facade\Ignition\Middleware\AddExceptionInformation;
use Facade\Ignition\Middleware\AddGitInformation;
use Facade\Ignition\Middleware\AddJobInformation;
use Facade\Ignition\Middleware\AddLogs;
use Facade\Ignition\Middleware\AddQueries;
use Facade\Ignition\Middleware\AddSolutions;
use Facade\Ignition\Middleware\AddExceptionInformation;
use Facade\Ignition\Middleware\SetNotifierName;
use Facade\Ignition\QueryRecorder\QueryRecorder;
use Facade\Ignition\SolutionProviders\BadMethodCallSolutionProvider;
Expand Down
2 changes: 1 addition & 1 deletion src/Middleware/AddExceptionInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function handle(Report $report, $next)
{
$throwable = $report->getThrowable();

if(! $throwable instanceof QueryException){
if (! $throwable instanceof QueryException) {
return $next($report);
}

Expand Down

0 comments on commit d9c57de

Please sign in to comment.