Completed
Push — master ( 636f13...7ce75f )
by Dmitry
02:00
created
src/JWTOptions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.