@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function isEncryptable($key) |
13 | 13 | { |
14 | - if(!isset($this->encryptable)) return false; |
|
14 | + if (!isset($this->encryptable)) return false; |
|
15 | 15 | |
16 | 16 | return in_array($key, $this->encryptable); |
17 | 17 | } |
@@ -11,7 +11,9 @@ |
||
11 | 11 | */ |
12 | 12 | public function isEncryptable($key) |
13 | 13 | { |
14 | - if(!isset($this->encryptable)) return false; |
|
14 | + if(!isset($this->encryptable)) { |
|
15 | + return false; |
|
16 | + } |
|
15 | 17 | |
16 | 18 | return in_array($key, $this->encryptable); |
17 | 19 | } |