Remove all constructors.

This commit is contained in:
James Cole
2017-01-30 16:46:30 +01:00
parent 311c1a3c84
commit 1e947870a6
26 changed files with 128 additions and 252 deletions

View File

@@ -30,15 +30,6 @@ class CurrencyRepository implements CurrencyRepositoryInterface
/** @var User */
private $user;
/**
* CategoryRepository constructor.
*
* @param User $user
*/
public function __construct(User $user)
{
$this->user = $user;
}
/**
* @param User $user
*/
@@ -46,6 +37,7 @@ class CurrencyRepository implements CurrencyRepositoryInterface
{
$this->user = $user;
}
/**
* @param TransactionCurrency $currency
*