PHP7 type declarations.

This commit is contained in:
James Cole
2016-02-18 10:04:26 +01:00
parent e7be4e3e49
commit f0f47530bf
14 changed files with 48 additions and 42 deletions

View File

@@ -25,7 +25,7 @@ class BalanceEntry
/**
* @return AccountModel
*/
public function getAccount()
public function getAccount(): AccountModel
{
return $this->account;
}
@@ -41,7 +41,7 @@ class BalanceEntry
/**
* @return string
*/
public function getLeft()
public function getLeft(): string
{
return $this->left;
}
@@ -57,7 +57,7 @@ class BalanceEntry
/**
* @return string
*/
public function getSpent()
public function getSpent(): string
{
return $this->spent;
}