From 86e701dcccc1b94dc74d19fccf18e48dcfde7f79 Mon Sep 17 00:00:00 2001
From: Alejandro Celaya <alejandro@alejandrocelaya.com>
Date: Wed, 1 Jan 2020 21:15:23 +0100
Subject: [PATCH] Updated local config file

---
 config/autoload/dependencies.local.php.dist | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/config/autoload/dependencies.local.php.dist b/config/autoload/dependencies.local.php.dist
index e7fb274f..d9569029 100644
--- a/config/autoload/dependencies.local.php.dist
+++ b/config/autoload/dependencies.local.php.dist
@@ -1,4 +1,5 @@
 <?php
+
 declare(strict_types=1);
 
 use Psr\Container\ContainerInterface;
@@ -12,7 +13,7 @@ return [
         ],
 
         'initializers' => [
-            function (ContainerInterface $container, $instance) {
+            function (ContainerInterface $container, $instance): void {
                 if ($instance instanceof Log\LoggerAwareInterface) {
                     $instance->setLogger($container->get(Log\LoggerInterface::class));
                 }