mirror of
https://github.com/archtechx/virtualcolumn.git
synced 2025-12-12 06:44:05 +00:00
Fix code style (php-cs-fixer)
This commit is contained in:
parent
b82084ba90
commit
424096a548
1 changed files with 5 additions and 5 deletions
|
|
@ -103,19 +103,19 @@ trait VirtualColumn
|
|||
'retrieved' => [
|
||||
function ($model) {
|
||||
// Always decode after model retrieval
|
||||
$model->dataEncoded = true;
|
||||
$model->dataEncoded = true;
|
||||
|
||||
$this->decodeVirtualColumn($model);
|
||||
}
|
||||
},
|
||||
],
|
||||
'saving' => [
|
||||
[$this, 'encodeAttributes']
|
||||
[$this, 'encodeAttributes'],
|
||||
],
|
||||
'creating' => [
|
||||
[$this, 'encodeAttributes']
|
||||
[$this, 'encodeAttributes'],
|
||||
],
|
||||
'updating' => [
|
||||
[$this, 'encodeAttributes']
|
||||
[$this, 'encodeAttributes'],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue