Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVanderbist authored and actions-user committed Aug 16, 2021
1 parent d4b3146 commit 7ac7f97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SolutionProviders/UndefinedVariableSolutionProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class UndefinedVariableSolutionProvider implements HasSolutionsForThrowable

public function canSolve(Throwable $throwable): bool
{
if (!$throwable instanceof ViewException) {
if (! $throwable instanceof ViewException) {
return false;
}

Expand All @@ -30,7 +30,7 @@ public function getSolutions(Throwable $throwable): array

extract($this->getNameAndView($throwable));

if (!isset($variableName)) {
if (! isset($variableName)) {
return [];
}

Expand Down

0 comments on commit 7ac7f97

Please sign in to comment.