engelsystem/includes/model/ValidationResult.php

45 lines
720 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
/**
* Constructor.
*
* @param boolean $valid
* Is the value valid?
* @param * $value
* The validated value
*/
2017-01-02 03:57:23 +01:00
public function __construct($valid, $value)
{
$this->valid = $valid;
$this->value = $value;
2016-11-18 08:20:17 +01:00
}
/**
* Is the value valid?
*/
2017-01-02 03:57:23 +01:00
public function isValid()
{
return $this->valid;
2016-11-18 08:20:17 +01:00
}
/**
* The parsed/validated value.
*/
2017-01-02 03:57:23 +01:00
public function getValue()
{
return $this->value;
2016-11-18 08:20:17 +01:00
}
}