Skip to content

Commit

Permalink
Fix wrong file name
Browse files Browse the repository at this point in the history
  • Loading branch information
sippsolutions committed Aug 5, 2024
1 parent 0842f0a commit e6545f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@

## Bugfixes

* Fix warning on validation.json output when `--clear-artefacts=true` (default behavior) is used
* Fix warning on validations.json output when `--clear-artefacts=true` (default behavior) is used

## Features

Expand Down
2 changes: 1 addition & 1 deletion src/Listeners/InvalidDataListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function handle(EventInterface $event, ApplicationInterface $application

// query whether or not we've validation errors
if (is_array($noStrictValidations) && sizeof($noStrictValidations) > 0) {
$application->invalidDataNoStrict('Invalid Data Please Check your Validation.json file', InvalidDataException::INVALID_DATA_CODE);
$application->invalidDataNoStrict('Invalid Data Please Check your validations.json file', InvalidDataException::INVALID_DATA_CODE);
}
}

Expand Down

0 comments on commit e6545f5

Please sign in to comment.