Usunięto tymczasowe pliki repozytoriów: AttributeRepository.php.tmp, Service4.php.tmp oraz child.php.tmp.

This commit is contained in:
2025-06-23 14:25:15 +02:00
parent 5bbfc86330
commit b71558a6f7
4 changed files with 24 additions and 81 deletions

View File

@@ -1,7 +0,0 @@
<?php
namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\OtherDir\Component2\Dir1;
class Service4
{
}

View File

@@ -1,22 +0,0 @@
<?php
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
use App\BarService;
return function (ContainerConfigurator $c) {
$c->services()
->set('bar', 'Class1')
->set(BarService::class)
->abstract(true)
->lazy()
->set('foo')
->parent(BarService::class)
->decorate('bar', 'b', 1)
->args([ref('b')])
->class('Class2')
->file('file.php')
->parent('bar')
->parent(BarService::class)
;
};