Skip to content

Commit

Permalink
fix: Old string formatter name to FQCN and Import. (dvsa/olcs-selfser…
Browse files Browse the repository at this point in the history
  • Loading branch information
fibble authored Feb 1, 2024
1 parent d2bcf8a commit ead904e
Showing 1 changed file with 2 additions and 1 deletion.
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 ead904e

Please sign in to comment.