From 81370bfee34f90d9bfd5bc3bb29d01ec262f56ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Be=C3=9Fenreither?= Date: Sun, 15 Mar 2026 20:41:37 +0100 Subject: [PATCH 1/2] removed wrong link and added contributor; --- README.md | 1 + documentation/mlc-cachedservicegenerator.md | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c42e0d4..68ad4f9 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ MIT Awesome people who contributed to this package - [dsentker](https://github.com/dsentker) +- [schwabwaldemar](https://github.com/schwabwaldemar) ## Honorable mentions thanks for support go to: diff --git a/documentation/mlc-cachedservicegenerator.md b/documentation/mlc-cachedservicegenerator.md index 0ca02d6..83a81a7 100644 --- a/documentation/mlc-cachedservicegenerator.md +++ b/documentation/mlc-cachedservicegenerator.md @@ -155,7 +155,6 @@ class TestService implements TestServiceInterface #### bulkConfig -See [Bulk Requests](#bulk-requests) Sometimes you have a method that accepts an array of ids that you want to fetch in a more performant way. Maybe by a bulk SQL query or via parallel CURL requests or other methods. Those requests are very inefficient to cache with just one entry because every change in the list will create a new cache key and therefore a separate entry in the cache. This means: From e49644251b62a30eb933d877d54f97c256bad00b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Be=C3=9Fenreither?= Date: Sun, 15 Mar 2026 20:58:40 +0100 Subject: [PATCH 2/2] removed debug output; --- .../CachedServiceGenerator/Service/FileOperationServiceTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/CachedServiceGenerator/Service/FileOperationServiceTest.php b/tests/CachedServiceGenerator/Service/FileOperationServiceTest.php index 15c9147..3457343 100644 --- a/tests/CachedServiceGenerator/Service/FileOperationServiceTest.php +++ b/tests/CachedServiceGenerator/Service/FileOperationServiceTest.php @@ -115,7 +115,6 @@ public function testFindRootForClassWithCorruptedNamespace(): void require_once($this->testFilesRootPath . '/CorruptedNamespace.php'); $this->expectException(RuntimeException::class); $result = FileOperationService::findRootForClass(CorruptedNamespace::class); - var_dump($result); } private function checkFileSyntax(string $file): void