Skip to content

Commit

Permalink
Fix "Validation rule 'url' not found" issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BlakvGhost committed Nov 18, 2023
1 parent 2b00484 commit 1156fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RulesMaped.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected static function getRules(): array
*/
protected static function getRule(string $alias): string
{
if (isset(self::$rules[$alias]) && class_exists(self::$rules[$alias])) {
if (isset(self::$rules[$alias])) {
return self::$rules[$alias];
}

Expand Down

0 comments on commit 1156fd9

Please sign in to comment.