Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion documentation/mlc-cachedservicegenerator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading