Replace methods with safe variants. Let's see how this works out.

This commit is contained in:
James Cole
2025-05-04 12:11:25 +02:00
parent fb31f25d71
commit 446e855b74
71 changed files with 480 additions and 353 deletions

View File

@@ -47,11 +47,11 @@ class AccountMeta extends Model
public function getDataAttribute(mixed $value): string
{
return (string) json_decode($value, true);
return (string) \Safe\json_decode($value, true);
}
public function setDataAttribute(mixed $value): void
{
$this->attributes['data'] = json_encode($value);
$this->attributes['data'] = \Safe\json_encode($value);
}
}

View File

@@ -50,7 +50,7 @@ class Configuration extends Model
*/
public function getDataAttribute($value)
{
return json_decode($value);
return \Safe\json_decode($value);
}
/**
@@ -58,6 +58,6 @@ class Configuration extends Model
*/
public function setDataAttribute($value): void
{
$this->attributes['data'] = json_encode($value);
$this->attributes['data'] = \Safe\json_encode($value);
}
}

View File

@@ -52,7 +52,7 @@ class TransactionJournalMeta extends Model
*/
public function getDataAttribute($value)
{
return json_decode($value, false);
return \Safe\json_decode($value, false);
}
/**
@@ -60,7 +60,7 @@ class TransactionJournalMeta extends Model
*/
public function setDataAttribute($value): void
{
$data = json_encode($value);
$data = \Safe\json_encode($value);
$this->attributes['data'] = $data;
$this->attributes['hash'] = hash('sha256', (string) $data);
}