From 7f3856f6883f73399f1492cde7018374c91390ea Mon Sep 17 00:00:00 2001 From: Marcus Sa Date: Sat, 3 May 2014 00:52:54 -0300 Subject: [PATCH] Add Client Class in Command Pattern. --- Command/Client.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Command/Client.php diff --git a/Command/Client.php b/Command/Client.php new file mode 100644 index 0000000..f7d03f1 --- /dev/null +++ b/Command/Client.php @@ -0,0 +1,22 @@ +setCommand($helloCommand); + $invoker->run(); + } +}