Skip to content

Commit d1c65ef

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: [Serializer] Fix for method named `get()` [Notifier][TurboSMS] Process partial accepted response from transport [HttpClient] Fix setting CURLMOPT_MAXCONNECTS throw a meaningful exception when parsing dotenv files with BOM [FrameworkBundle] Fix schema & finish incomplete tests for lock & semaphore config [Cache] Fix RedisSentinel params types [FrameworkBundle] Fix service reset between tests [Uid][Serializer][Validator] Mention RFC 9562 make sure temp files can be cleaned up on Windows
2 parents 5320e0b + 520fc55 commit d1c65ef

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Container.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ public function initialized(string $id): bool
276276
public function reset(): void
277277
{
278278
$services = $this->services + $this->privates;
279-
$this->services = $this->factories = $this->privates = [];
280279

281280
foreach ($services as $service) {
282281
try {
@@ -288,7 +287,7 @@ public function reset(): void
288287
}
289288
}
290289

291-
$this->envCache = [];
290+
$this->envCache = $this->services = $this->factories = $this->privates = [];
292291
}
293292

294293
/**

0 commit comments

Comments
 (0)