1
0
Fork 0
mirror of https://github.com/archtechx/virtualcolumn.git synced 2025-12-12 09:34:04 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
Samuel Štancl 2023-08-09 10:17:18 +00:00
parent 06703921f0
commit eda9895595

View file

@ -147,9 +147,11 @@ trait VirtualColumn
static::$afterListeners[$event][] = $callback; static::$afterListeners[$event][] = $callback;
} }
public function getCasts(){return array_merge(parent::getCasts(), [ public function getCasts()
static::getDataColumn() => 'array', {
]); return array_merge(parent::getCasts(), [
static::getDataColumn() => 'array',
]);
} }
/** /**