123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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();
- }
- }
|