Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Nov 18, 2024
1 parent c5ca87a commit 7c18db2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Arguments/Reducers/MinimalArrayArgumentReducer.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class MinimalArrayArgumentReducer implements ArgumentReducer
{
public function execute($argument): ReducedArgumentContract
{
if(! is_array($argument)) {
if (! is_array($argument)) {
return UnReducedArgument::create();
}

Expand Down
2 changes: 1 addition & 1 deletion src/Arguments/Reducers/SymphonyRequestArgumentReducer.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SymphonyRequestArgumentReducer implements ArgumentReducer
{
public function execute($argument): ReducedArgumentContract
{
if(! $argument instanceof Request) {
if (! $argument instanceof Request) {
return UnReducedArgument::create();
}

Expand Down
4 changes: 2 additions & 2 deletions src/Frame.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ public function getSnippetProperties(int $lineCount): array

protected function getCodeSnippetProvider(): SnippetProvider
{
if($this->textSnippet) {
if ($this->textSnippet) {
return new LaravelSerializableClosureSnippetProvider($this->textSnippet);
}

if(file_exists($this->file)) {
if (file_exists($this->file)) {
return new FileSnippetProvider($this->file);
}

Expand Down
1 change: 0 additions & 1 deletion tests/BacktraceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -315,5 +315,4 @@ public function it_does_not_trim_file_path_if_no_application_path_set()
{
$this->assertNull(Backtrace::create()->trimFilePaths()->frames()[0]->trimmedFilePath);
}

}

0 comments on commit 7c18db2

Please sign in to comment.