Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit 6a1f0d2

Browse files
austinheapStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 9994b22 commit 6a1f0d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Traits/HasEncryptedAttributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public function decryptedAttribute($value)
170170
{
171171
$characters = DatabaseEncryption::getControlCharacters('header');
172172

173-
throw_if(!array_key_exists('stop', $characters), DecryptException::class, "Cannot decrypt model attribute not originally encrypted by this package!");
173+
throw_if(! array_key_exists('stop', $characters), DecryptException::class, 'Cannot decrypt model attribute not originally encrypted by this package!');
174174

175175
$offset = strpos($value, $characters['stop']['string']);
176176
$value = substr($value, $offset);

0 commit comments

Comments
 (0)