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: 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