Skip to content

Commit

Permalink
Fix coding style issues
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Fedurtsya <[email protected]>
  • Loading branch information
Sieg committed Jan 9, 2024
1 parent 864819a commit 9dcdc8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ public function testUpdateTypeUrls(): void
public function getSut(
SynchronizerInterface $synchronizer = null,
FilterFactoryInterface $filterFactory = null,
): UpdateTypeCommand
{
): UpdateTypeCommand {
return new UpdateTypeCommand(
synchronizer: $synchronizer ?? $this->createMock(SynchronizerInterface::class),
filterFactory: $filterFactory ?? $this->createMock(FilterFactoryInterface::class),
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ChangeFilter/Shared/BaseChangeFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function testGetObjectType(): void
{
$objectType = uniqid();

$sut = new class($objectType) extends BaseChangeFilter {
$sut = new class ($objectType) extends BaseChangeFilter {
public function getUpdatedUrls(int $limit): iterable
{
}
Expand Down

0 comments on commit 9dcdc8a

Please sign in to comment.