We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MainTransformer
1 parent d136aec commit 58cbc72Copy full SHA for 58cbc72
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## 0.9.1
4
5
* perf(`TypeResolver`): Optimize `getSimpleTypes`.
6
+* fix(`MainTransformer`): Reduce GC interval to 500.
7
8
## 0.9.0
9
src/MainTransformer/MainTransformer.php
@@ -36,7 +36,7 @@
36
37
class MainTransformer implements MainTransformerInterface
38
{
39
- public static int $manualGcInterval = 10000;
+ public static int $manualGcInterval = 500;
40
private static int $runCounter = 1;
41
42
public function __construct(
0 commit comments