Set A Default Currency

What is the best method to set the default currency?

There’s no proprety in yii\i18n\Formatter to set the default currency.

I searched among the comments but I can’t find a solution to my problem, in my grid I would like to use




...

'columns' => [

                  ['class' => 'yii\grid\SerialColumn'],

                  'number',

                  'date:date',

                  'total:currency'

              ],

...



with my currency.

Thank you