Skip to content

Commit

Permalink
Make services protected to allow override
Browse files Browse the repository at this point in the history
  • Loading branch information
edhgoose committed May 7, 2022
1 parent 310a789 commit 46ce123
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Command/LoadCurrencyRatesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class LoadCurrencyRatesCommand extends Command
{
protected static $defaultName = 'redcode:currency:rate:load';

private CurrencyRateManager $currencyRateManager;
private CurrencyManager $currencyManager;
private ProviderFactory $providerFactory;
protected CurrencyRateManager $currencyRateManager;
protected CurrencyManager $currencyManager;
protected ProviderFactory $providerFactory;

public function __construct(
CurrencyRateManager $currencyRateManager,
Expand Down

0 comments on commit 46ce123

Please sign in to comment.