Skip to content

Commit

Permalink
Better minimum version exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrech committed Mar 21, 2024
1 parent 0dd4eb7 commit 7e1d1fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exception/MinimumVersionRequirementNotMetException.php
Expand Up @@ -8,6 +8,6 @@ public function __construct(
readonly string $requiredVersion,
readonly string $currentVersion,
) {
parent::__construct("Castor requires at least version {$requiredVersion}, you are using {$currentVersion}. Please consider upgrading.");
parent::__construct("This project requires Castor in version {$requiredVersion} or greater, you are using {$currentVersion}. Please consider upgrading.");
}
}

0 comments on commit 7e1d1fc

Please sign in to comment.