Skip to content

Commit

Permalink
Merge pull request #1208: Apply risky Code Style rules
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralbot committed Jan 24, 2025
1 parent 56de3f6 commit 20666f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Bootloader/SerializerBootloaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function testAddSerializer(): void
$this->configureSerializer();

$registry = $this->container->get(SerializerRegistryInterface::class);
$registry->register('callback', new CallbackSerializer(fn() => null, fn() => null));
$registry->register('callback', new CallbackSerializer(static fn() => null, static fn() => null));

$manager = $this->container->get(SerializerManager::class);
self::assertInstanceOf(SerializerManager::class, $manager);
Expand Down
Binary file modified tests/Fixture/GPBMetadata/Service.php
Binary file not shown.
2 changes: 2 additions & 0 deletions tests/Fixture/PingRequest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: service.proto

Expand Down

0 comments on commit 20666f6

Please sign in to comment.