Added PHP7 return type statements.

This commit is contained in:
James Cole
2016-02-06 10:11:06 +01:00
parent c9b56efaaa
commit 466067bd95
12 changed files with 169 additions and 108 deletions

View File

@@ -18,7 +18,7 @@ class Amount extends Facade
*
* @return string
*/
protected static function getFacadeAccessor()
protected static function getFacadeAccessor(): string
{
return 'amount';
}

View File

@@ -18,7 +18,7 @@ class ExpandedForm extends Facade
*
* @return string
*/
protected static function getFacadeAccessor()
protected static function getFacadeAccessor(): string
{
return 'expandedform';
}

View File

@@ -18,7 +18,7 @@ class Navigation extends Facade
*
* @return string
*/
protected static function getFacadeAccessor()
protected static function getFacadeAccessor(): string
{
return 'navigation';
}

View File

@@ -18,7 +18,7 @@ class Preferences extends Facade
*
* @return string
*/
protected static function getFacadeAccessor()
protected static function getFacadeAccessor(): string
{
return 'preferences';
}

View File

@@ -18,7 +18,7 @@ class Steam extends Facade
*
* @return string
*/
protected static function getFacadeAccessor()
protected static function getFacadeAccessor(): string
{
return 'steam';
}