summaryrefslogtreecommitdiff
path: root/includes/model/ValidationResult.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2017-01-02 15:43:36 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-02 15:49:53 +0100
commitd71e7bbfad2f07f82df0c515608996d250fd4182 (patch)
tree5083a17b218c08b3a699a0bf15bec926cc2dd185 /includes/model/ValidationResult.php
parent7313e15ce8236e19331fb6639a3a5b97c8f06ecd (diff)
Formatting
Diffstat (limited to 'includes/model/ValidationResult.php')
-rw-r--r--includes/model/ValidationResult.php54
1 files changed, 27 insertions, 27 deletions
diff --git a/includes/model/ValidationResult.php b/includes/model/ValidationResult.php
index 7dfcb5ba..b08e9d31 100644
--- a/includes/model/ValidationResult.php
+++ b/includes/model/ValidationResult.php
@@ -12,33 +12,33 @@ class ValidationResult
private $value;
- /**
- * Constructor.
- *
- * @param boolean $valid
- * Is the value valid?
- * @param * $value
- * The validated value
- */
- public function __construct($valid, $value)
- {
- $this->valid = $valid;
- $this->value = $value;
- }
+ /**
+ * Constructor.
+ *
+ * @param boolean $valid
+ * Is the value valid?
+ * @param * $value
+ * The validated value
+ */
+ public function __construct($valid, $value)
+ {
+ $this->valid = $valid;
+ $this->value = $value;
+ }
- /**
- * Is the value valid?
- */
- public function isValid()
- {
- return $this->valid;
- }
+ /**
+ * Is the value valid?
+ */
+ public function isValid()
+ {
+ return $this->valid;
+ }
- /**
- * The parsed/validated value.
- */
- public function getValue()
- {
- return $this->value;
- }
+ /**
+ * The parsed/validated value.
+ */
+ public function getValue()
+ {
+ return $this->value;
+ }
}