Skip to content

Commit

Permalink
Minor coding style improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
HypeMC committed Feb 4, 2023
1 parent 727e9f6 commit 38fb3bc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/ConfigurationProvider/Attribute/LoggableOutputTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,13 @@ public function invalidLevels(): iterable

public function testNullValuesAreFiltered(): void
{
$options = (new LoggableOutput([], 'name', null, 'stream', null, true, null, 0775))
->getOptions()
;
$loggableOutput = new LoggableOutput([], 'name', null, 'stream', null, true, null, 0775);

$this->assertSame([
'filename' => 'name',
'type' => 'stream',
'bubble' => true,
'file_permission' => 0775,
], $options);
], $loggableOutput->getOptions());
}
}

0 comments on commit 38fb3bc

Please sign in to comment.