12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Predis\Options;
- class Option implements IOption
- {
- public function validate($value)
- {
- return $value;
- }
- public function getDefault()
- {
- return null;
- }
- public function __invoke($value)
- {
- if (isset($value)) {
- return $this->validate($value);
- }
- return $this->getDefault();
- }
- }
|