Skip to content

Commit

Permalink
Merge branch '10.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
freost committed Nov 27, 2023
2 parents 38a3631 + 5ab3ff6 commit 14e0a90
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 10.0.3 <small>(2023-11-27)</small>

#### Bugfixes

* The validation factory `$container` constructor parameter no longer accepts null.

--------------------------------------------------------

### 10.0.2 <small>(2023-11-25)</small>

#### New
Expand Down
2 changes: 1 addition & 1 deletion src/mako/validator/ValidatorFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ValidatorFactory
*/
public function __construct(
protected ?I18n $i18n = null,
protected ?Container $container = null
protected Container $container = new Container,
) {
}

Expand Down

0 comments on commit 14e0a90

Please sign in to comment.