mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-15 19:09:50 +00:00
Added PHP7 return type statements.
This commit is contained in:
@@ -18,7 +18,7 @@ class Amount extends Facade
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return 'amount';
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class ExpandedForm extends Facade
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return 'expandedform';
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Navigation extends Facade
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return 'navigation';
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Preferences extends Facade
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return 'preferences';
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Steam extends Facade
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return 'steam';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user