123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Predis\Option;
- class ClientExceptions extends AbstractOption
- {
-
- public function filter(ClientOptionsInterface $options, $value)
- {
- return (bool) $value;
- }
-
- public function getDefault(ClientOptionsInterface $options)
- {
- return true;
- }
- }
|