From 06703921f0d0a46949e9838bfe20ee2da29d45d0 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 9 Aug 2023 12:16:57 +0200 Subject: [PATCH] Break code style (testing) --- src/VirtualColumn.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/VirtualColumn.php b/src/VirtualColumn.php index abbf735..0477018 100644 --- a/src/VirtualColumn.php +++ b/src/VirtualColumn.php @@ -147,9 +147,7 @@ trait VirtualColumn static::$afterListeners[$event][] = $callback; } - public function getCasts() - { - return array_merge(parent::getCasts(), [ + public function getCasts(){return array_merge(parent::getCasts(), [ static::getDataColumn() => 'array', ]); }