Skip to content

Commit

Permalink
feat: add fixture for empty bind section case
Browse files Browse the repository at this point in the history
  • Loading branch information
COil authored Dec 6, 2024
1 parent 6084ae2 commit 051ef80
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
services:
_defaults:
autowire: true
autoconfigure: true
bind:
-----
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$services = $containerConfigurator->services();

$services->defaults()
->autowire()
->autoconfigure()
};

0 comments on commit 051ef80

Please sign in to comment.