File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change
1
+ ### 10.0.3 <small >(2023-11-27)</small >
2
+
3
+ #### Bugfixes
4
+
5
+ * The validation factory ` $container ` constructor parameter no longer accepts null.
6
+
7
+ --------------------------------------------------------
8
+
1
9
### 10.0.2 <small >(2023-11-25)</small >
2
10
3
11
#### New
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Mako
17
17
*
18
18
* @var string
19
19
*/
20
- public const VERSION = '10.0.2 ' ;
20
+ public const VERSION = '10.0.3 ' ;
21
21
22
22
/**
23
23
* Mako major version.
@@ -38,5 +38,5 @@ class Mako
38
38
*
39
39
* @var int
40
40
*/
41
- public const VERSION_PATCH = 2 ;
41
+ public const VERSION_PATCH = 3 ;
42
42
}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class ValidatorFactory
25
25
*/
26
26
public function __construct (
27
27
protected ?I18n $ i18n = null ,
28
- protected ? Container $ container = null
28
+ protected Container $ container = new Container ,
29
29
) {
30
30
}
31
31
You can’t perform that action at this time.
0 commit comments