@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | protected function is_valid_using($options) |
43 | 43 | { |
44 | 44 | $this->is_present_option($options, 'using'); |
45 | - if ( ! is_bool($options['jwt']['using'])) |
|
45 | + if (!is_bool($options['jwt']['using'])) |
|
46 | 46 | { |
47 | 47 | throw new Exception\Data('parameter jwt/using is incorrect'); |
48 | 48 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | protected function is_present_option($options, $name) |
59 | 59 | { |
60 | - if ( ! isset($options['jwt'][$name])) |
|
60 | + if (!isset($options['jwt'][$name])) |
|
61 | 61 | { |
62 | 62 | throw new Exception\Data('parameter jwt/'.$name.' is not specified'); |
63 | 63 | } |