mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
Fix for symbol placement
This commit is contained in:
parent
2e1d340d27
commit
fa9370d4fb
@ -5,5 +5,6 @@ We welcome contributions! We'll improve this guide over time...
|
||||
*Please note: although our application is open-source we run a for-profit hosted service at [invoiceninja.com](https://www.invoiceninja.com).*
|
||||
|
||||
Guidelines
|
||||
- Please try to follow [PSR-2 guidlines](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
|
||||
- Try to follow [PSR-2 guidlines](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
|
||||
- Create pull requests against the develop branch
|
||||
- Add translations in our [Transifex](https://www.transifex.com/invoice-ninja/) project
|
||||
|
@ -6,6 +6,10 @@ class Currency extends Eloquent
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $casts = [
|
||||
'swap_currency_symbol' => 'boolean',
|
||||
];
|
||||
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
|
Loading…
Reference in New Issue
Block a user