mirror of
https://github.com/predis/predis.git
synced 2026-08-24 06:49:43 +00:00
14 lines
216 B
PHP
14 lines
216 B
PHP
<?php
|
|
|
|
namespace Predis\Options;
|
|
|
|
class ClientThrowOnError extends Option {
|
|
public function validate($value) {
|
|
return (bool) $value;
|
|
}
|
|
|
|
public function getDefault() {
|
|
return true;
|
|
}
|
|
}
|