Skip to content

Commit

Permalink
Fix issue#47
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse authored Feb 21, 2017
1 parent 982e23a commit ca5d8d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1313,8 +1313,8 @@ Finally let's see how we can use it in our client
```php
$bulb = new Bulb();

$turnOn = new TurnOnCommand($bulb);
$turnOff = new TurnOffCommand($bulb);
$turnOn = new TurnOn($bulb);
$turnOff = new TurnOff($bulb);

$remote = new RemoteControl();
$remoteControl->submit($turnOn); // Bulb has been lit!
Expand Down

0 comments on commit ca5d8d9

Please sign in to comment.