Skip to content

Commit d345586

Browse files
committed
Remove "final" from Configuration (allow override)
1 parent b7fd140 commit d345586

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Psr\Log\LoggerInterface;
88
use TypeLang\Mapper\Tracing\TracerInterface;
99

10-
final class Configuration
10+
class Configuration
1111
{
1212
/**
1313
* Default value for {@see $objectAsArray} option.
@@ -17,7 +17,7 @@ final class Configuration
1717
/**
1818
* Default value for {@see $strictTypes} option.
1919
*/
20-
public const STRICT_TYPES_DEFAULT_VALUE = true;
20+
public const STRICT_TYPES_DEFAULT_VALUE = false;
2121

2222
public function __construct(
2323
/**

0 commit comments

Comments
 (0)