engelsystem/includes/model/ValidationResult.php

45 lines
774 B
PHP
Raw Normal View History

2016-11-18 08:20:17 +01:00
<?php
namespace Engelsystem;
/**
* BO that represents the result of an entity attribute validation.
* It contains the validated value and a bool for validation success.
*/
2017-01-02 03:57:23 +01:00
class ValidationResult
{
private $valid;
2016-11-18 08:20:17 +01:00
2017-01-02 03:57:23 +01:00
private $value;
2016-11-18 08:20:17 +01:00
2017-01-02 15:43:36 +01:00
/**
* Constructor.
*
* @param boolean $valid
* Is the value valid?
* @param * $value
* The validated value
*/
public function __construct($valid, $value)
{
$this->valid = $valid;
$this->value = $value;
}
2016-11-18 08:20:17 +01:00
2017-01-02 15:43:36 +01:00
/**
* Is the value valid?
*/
public function isValid()
{
return $this->valid;
}
2016-11-18 08:20:17 +01:00
2017-01-02 15:43:36 +01:00
/**
* The parsed/validated value.
*/
public function getValue()
{
return $this->value;
}
2016-11-18 08:20:17 +01:00
}