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).*
|
*Please note: although our application is open-source we run a for-profit hosted service at [invoiceninja.com](https://www.invoiceninja.com).*
|
||||||
|
|
||||||
Guidelines
|
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
|
- Add translations in our [Transifex](https://www.transifex.com/invoice-ninja/) project
|
||||||
|
@ -6,8 +6,12 @@ class Currency extends Eloquent
|
|||||||
{
|
{
|
||||||
public $timestamps = false;
|
public $timestamps = false;
|
||||||
|
|
||||||
public function getName()
|
protected $casts = [
|
||||||
|
'swap_currency_symbol' => 'boolean',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function getName()
|
||||||
{
|
{
|
||||||
return $this->name;
|
return $this->name;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user