Skip to content

Commit 5fa0f1b

Browse files
committed
Add return types
1 parent a14fea8 commit 5fa0f1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Providers/LaravelKafkaServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function boot(): void
3232
}
3333
}
3434

35-
public function register()
35+
public function register(): void
3636
{
3737
$this->app->bind(MessageSerializer::class, fn () => new JsonSerializer());
3838

@@ -47,7 +47,7 @@ public function register()
4747
$this->app->singleton(LoggerContract::class, Logger::class);
4848
}
4949

50-
private function publishesConfiguration()
50+
private function publishesConfiguration(): void
5151
{
5252
$this->publishes([
5353
__DIR__."/../../config/kafka.php" => config_path('kafka.php'),

0 commit comments

Comments
 (0)