From eda989559555a506f447487f72bd699039b6f0e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 9 Aug 2023 10:17:18 +0000 Subject: [PATCH] Fix code style (php-cs-fixer) --- src/VirtualColumn.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/VirtualColumn.php b/src/VirtualColumn.php index 0477018..9a07e8e 100644 --- a/src/VirtualColumn.php +++ b/src/VirtualColumn.php @@ -147,9 +147,11 @@ trait VirtualColumn static::$afterListeners[$event][] = $callback; } - public function getCasts(){return array_merge(parent::getCasts(), [ - static::getDataColumn() => 'array', - ]); + public function getCasts() + { + return array_merge(parent::getCasts(), [ + static::getDataColumn() => 'array', + ]); } /**