summaryrefslogtreecommitdiff
path: root/vendor/SimpleValidator/Validator.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/SimpleValidator/Validator.php')
-rw-r--r--vendor/SimpleValidator/Validator.php67
1 files changed, 0 insertions, 67 deletions
diff --git a/vendor/SimpleValidator/Validator.php b/vendor/SimpleValidator/Validator.php
deleted file mode 100644
index 8bb4d620..00000000
--- a/vendor/SimpleValidator/Validator.php
+++ /dev/null
@@ -1,67 +0,0 @@
-<?php
-
-/*
- * This file is part of Simple Validator.
- *
- * (c) Frédéric Guillot <contact@fredericguillot.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-namespace SimpleValidator;
-
-/**
- * @author Frédéric Guillot <contact@fredericguillot.com>
- */
-class Validator
-{
- private $data = array();
- private $errors = array();
- private $validators = array();
-
-
- public function __construct(array $data, array $validators)
- {
- $this->data = $data;
- $this->validators = $validators;
- }
-
-
- public function execute()
- {
- $result = true;
-
- foreach ($this->validators as $validator) {
-
- if (! $validator->execute($this->data)) {
-
- $this->addError(
- $validator->getField(),
- $validator->getErrorMessage()
- );
-
- $result = false;
- }
- }
-
- return $result;
- }
-
-
- public function addError($field, $message)
- {
- if (! isset($this->errors[$field])) {
-
- $this->errors[$field] = array();
- }
-
- $this->errors[$field][] = $message;
- }
-
-
- public function getErrors()
- {
- return $this->errors;
- }
-} \ No newline at end of file