Skip to content

Commit 0ce76cf

Browse files
committed
Fix DefaultTypeRepositoryFactory properties
1 parent 935790b commit 0ce76cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Kernel/Repository/Factory/DefaultTypeRepositoryFactory.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,23 +67,23 @@ public function __construct(
6767
/**
6868
* Enables or disables logging of type matching processes
6969
*/
70-
private readonly bool $enableTypeMatchLogging = self::DEFAULT_TYPE_MATCH_TRACING_OPTION,
70+
private readonly bool $enableTypeMatchLogging = self::DEFAULT_TYPE_MATCH_LOGGING_OPTION,
7171
/**
7272
* Enables or disables logging of type casting processes
7373
*/
74-
private readonly bool $enableTypeCastLogging = self::DEFAULT_TYPE_CAST_TRACING_OPTION,
74+
private readonly bool $enableTypeCastLogging = self::DEFAULT_TYPE_CAST_LOGGING_OPTION,
7575
/**
7676
* Enables or disables tracing of type retrieval from the repository
7777
*/
7878
private readonly bool $enableTracing = self::DEFAULT_TRACING_OPTION,
7979
/**
8080
* Enables or disables tracing of type matching processes
8181
*/
82-
private readonly bool $enableTypeMatchTracing = self::DEFAULT_TYPE_MATCH_LOGGING_OPTION,
82+
private readonly bool $enableTypeMatchTracing = self::DEFAULT_TYPE_MATCH_TRACING_OPTION,
8383
/**
8484
* Enables or disables tracing of type casting processes
8585
*/
86-
private readonly bool $enableTypeCastTracing = self::DEFAULT_TYPE_CAST_LOGGING_OPTION,
86+
private readonly bool $enableTypeCastTracing = self::DEFAULT_TYPE_CAST_TRACING_OPTION,
8787
/**
8888
* Enables or disables storing types in memory for quick retrieval
8989
*/

0 commit comments

Comments
 (0)