summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/stdlib/src/Contract/Validator.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ipl/stdlib/src/Contract/Validator.php')
-rw-r--r--vendor/ipl/stdlib/src/Contract/Validator.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/ipl/stdlib/src/Contract/Validator.php b/vendor/ipl/stdlib/src/Contract/Validator.php
new file mode 100644
index 0000000..e43821d
--- /dev/null
+++ b/vendor/ipl/stdlib/src/Contract/Validator.php
@@ -0,0 +1,22 @@
+<?php
+
+namespace ipl\Stdlib\Contract;
+
+interface Validator
+{
+ /**
+ * Get whether the given value is valid
+ *
+ * @param mixed $value
+ *
+ * @return bool
+ */
+ public function isValid($value);
+
+ /**
+ * Get the validation error messages
+ *
+ * @return array<string>
+ */
+ public function getMessages();
+}