Completed
Push — master ( 75d725...071852 )
by Robin
03:11
created
src/ModelEncryption.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,9 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.