Skip to content

Commit 9dcd32d

Browse files
rubenvanasscheactions-user
authored andcommitted
Fix styling
1 parent b95522e commit 9dcd32d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Flare.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,11 @@ public function report(Throwable $throwable, callable $callback = null)
207207

208208
protected function shouldSendReport(Throwable $throwable): bool
209209
{
210-
if($this->reportErrorLevels && $throwable instanceof Error){
210+
if ($this->reportErrorLevels && $throwable instanceof Error) {
211211
return $this->reportErrorLevels & $throwable->getCode();
212212
}
213213

214-
if($this->reportErrorLevels && $throwable instanceof ErrorException){
214+
if ($this->reportErrorLevels && $throwable instanceof ErrorException) {
215215
return $this->reportErrorLevels & $throwable->getSeverity();
216216
}
217217

0 commit comments

Comments
 (0)