File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ public function handle()
192192 // encrypted then try to decrypt it with the base encrypter.
193193 $ adjust = [];
194194 foreach ($ datum_array as $ key => $ value ) {
195- if (!$ this ->isEncrypted ($ value )) {
195+ if (! $ this ->isEncrypted ($ value )) {
196196 continue ;
197197 }
198198
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public function decryptedAttribute($value)
140140 */
141141 protected function doEncryptAttribute ($ key )
142142 {
143- if ($ this ->shouldEncrypt ($ key ) && !$ this ->isEncrypted ($ this ->attributes [$ key ])) {
143+ if ($ this ->shouldEncrypt ($ key ) && ! $ this ->isEncrypted ($ this ->attributes [$ key ])) {
144144 try {
145145 $ this ->attributes [$ key ] = $ this ->encryptedAttribute ($ this ->attributes [$ key ]);
146146 } catch (EncryptException $ e ) {
You can’t perform that action at this time.
0 commit comments