From 3e515daa0f4b85ea0edd8f7aeeb9b8806cb41076 Mon Sep 17 00:00:00 2001 From: Antonio Spinelli Date: Mon, 24 Mar 2014 09:14:05 -0300 Subject: [PATCH] Behavioral\Command restructured --- Behavioral/Command/CommandInterface.php | 2 +- Behavioral/Command/HelloCommand.php | 2 +- Behavioral/Command/Invoker.php | 2 +- Behavioral/Command/Receiver.php | 2 +- .../Command/{Test => Tests}/CommandTest.php | 16 +++++++++++----- 5 files changed, 15 insertions(+), 9 deletions(-) rename Behavioral/Command/{Test => Tests}/CommandTest.php (65%) diff --git a/Behavioral/Command/CommandInterface.php b/Behavioral/Command/CommandInterface.php index ebdbb85..ad9117b 100644 --- a/Behavioral/Command/CommandInterface.php +++ b/Behavioral/Command/CommandInterface.php @@ -1,6 +1,6 @@ invoker = new Invoker(); $this->receiver = new Receiver(); }