Skip to content

Commit 76e4e98

Browse files
author
Sam Rapaport
committed
Make published base Validator concrete.
It doesn't make sense for the Validator to be abstract for multiple reasons. Though the preferred method is to have individual validators per model, there is no real reason to limit developers from using the base validator instead.
1 parent 927464e commit 76e4e98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Validators/Validator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Samrap\Validation\Validator as BaseValidator;
66

7-
abstract class Validator extends BaseValidator
7+
class Validator extends BaseValidator
88
{
99
//
1010
}

0 commit comments

Comments
 (0)