Passed
Push — master ( 407522...95fdf8 )
by Kirill
04:13
created
src/Framework/Bootloader/AttributesBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function boot(Container $container): void
25 25
     {
26
-        $container->bindSingleton(ReaderInterface::class, static function () {
26
+        $container->bindSingleton(ReaderInterface::class, static function (){
27 27
             return new AttributeReader();
28 28
         });
29 29
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,8 @@
 block discarded – undo
23 23
      */
24 24
     public function boot(Container $container): void
25 25
     {
26
-        $container->bindSingleton(ReaderInterface::class, static function () {
26
+        $container->bindSingleton(ReaderInterface::class, static function ()
27
+        {
27 28
             return new AttributeReader();
28 29
         });
29 30
     }
Please login to merge, or discard this patch.