Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
fix: Old string formatter name to FQCN and Import.
Browse files Browse the repository at this point in the history
  • Loading branch information
fibble committed Feb 1, 2024
1 parent 62fc64d commit 307b5df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion module/Olcs/src/Table/Tables/txc-inbox.table.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

use Common\Service\Table\Formatter\BusRegStatus;
use Common\Service\Table\Formatter\EbsrRegNumberLink;
use Common\Service\Table\Formatter\EbsrVariationNumber;
use Common\Service\Table\Formatter\StackValue;

return array(
Expand Down Expand Up @@ -47,7 +48,7 @@
'title' => 'selfserve-table-txc-inbox-variation',
'isNumeric' => true,
'formatter' => function ($data, $column) {
$column['formatter'] = 'EbsrVariationNumber';
$column['formatter'] = EbsrVariationNumber::class;
return $this->callFormatter($column, $data);
}
),
Expand Down

0 comments on commit 307b5df

Please sign in to comment.