update getVariantsAttribute return type

This commit is contained in:
2023-05-25 12:21:23 +10:00
parent 9c926d15c1
commit 89a8b6926a

View File

@@ -147,9 +147,9 @@ class Media extends Model
* Variants Get Mutator. * Variants Get Mutator.
* *
* @param mixed $value The value to mutate. * @param mixed $value The value to mutate.
* @return array The mutated value. * @return array|null The mutated value.
*/ */
public function getVariantsAttribute(mixed $value): array public function getVariantsAttribute(mixed $value): array|null
{ {
if (is_string($value) === true) { if (is_string($value) === true) {
return json_decode($value, true); return json_decode($value, true);