ailixter / gears-value
The project that gears values
Installs: 10 732
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.1
This package is auto-updated.
Last update: 2025-03-15 20:01:52 UTC
README
The project that gears values.
- Value class implements [value, error] pattern.
- It proposes simple and clear ValueInterface.
- It provides protected validation method to override.
- And simple rules
- value may only be constructed, not set
- invalid value cannot be constructed
- value with errors cannot be returned
- you can get both if you're willing to
Basic Usage
use Ailixter\Gears\IntValue; use Ailixter\Gears\ValueInterface; class Positive extends IntValue { protected function validate() { if ($this->getValue() < 1) { $this->addError('value', 'is not positive'); } } } function calculate(int $int): Positive { $result = new Positive($int * $int); if ($result->getValue() > 81) { $result->addError('value', 'too big'); } return $result; } function readyForUnexpected(IntValue $int) { if ($int->getErrors()) { $result = 81; } else { $result = $int->getValue(); } echo $result - 1; } function wantNoUnexpected(int $int) { echo $int - 1; } readyForUnexpected(calculate(8)); // 63 readyForUnexpected(calculate(10)); // 80 wantNoUnexpected(calculate(8)->get()); // 63 try { wantNoUnexpected(calculate(10)->get()); // exception - too big } catch (Ailixter\Gears\Exceptions\ValueException $ve) { echo PHP_EOL, $ve->getMessage(), ': '; print_r($ve->getValue()->getErrors()); } try { calculate(0); // exception - not positive } catch (Ailixter\Gears\Exceptions\ValueException $ve) { echo PHP_EOL, $ve->getMessage(), ': '; print_r($ve->getValue()->getErrors()); }