We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b05cfce commit c06f005Copy full SHA for c06f005
SandersW-LearningPHPDesignPatterns/adapter/UsingInheritence/Client.php
@@ -11,8 +11,8 @@ class Client {
11
private $dollarRequest;
12
13
public function __construct() {
14
- $this->requestNow=new EuroAdapter();
15
- $this->dollarRequest=new DollarCalc();
+ $this->requestNow = new EuroAdapter();
+ $this->dollarRequest = new DollarCalc();
16
$euro="€";
17
18
echo "Euros: $euro" . $this->makeAdapterRequest($this->requestNow) .
0 commit comments