Completed
Push — master ( 0df352...724305 )
by John
04:42
created
src/Command/AbstractCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * @param TelnetResponseInterface $response
41 41
      *
42
-     * @return Graze\Dynamark3Client\Dynamark3Response
42
+     * @return Dynamark3Response
43 43
      */
44 44
     public function parseResponse(TelnetResponseInterface $response)
45 45
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Graze\Dynamark3Client\Command\CommandInterface;
18 18
 use Graze\TelnetClient\TelnetResponseInterface;
19 19
 use Graze\Dynamark3Client\Dynamark3Response;
20
-use Graze\Dynamark3Client\Dynamark3Constants;
21 20
 
22 21
 abstract class AbstractCommand implements CommandInterface
23 22
 {
Please login to merge, or discard this patch.
src/Command/CommandGetxml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     /**
38 38
      * @param TelnetResponseInterface $telnetResponse
39 39
      *
40
-     * @return Graze\Dynamark3Client\Dynamark3Response
40
+     * @return \Graze\Dynamark3Client\Dynamark3Response
41 41
      */
42 42
     public function parseResponse(TelnetResponseInterface $telnetResponse)
43 43
     {
Please login to merge, or discard this patch.
tests/unit/Command/CommandGenericTest.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,6 @@
 block discarded – undo
53 53
      * @dataProvider dataProviderCommandSuccess
54 54
      *
55 55
      * @param string $commandText
56
-     * @param string $rawTelnetResponse
57
-     * @param string $expectedResponseText
58 56
      *
59 57
      * @return void
60 58
      */
Please login to merge, or discard this patch.
src/Dynamark3Client.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,13 +62,13 @@
 block discarded – undo
62 62
      */
63 63
     protected function send(CommandInterface $command)
64 64
     {
65
-        $arguments =  func_get_args();
65
+        $arguments = func_get_args();
66 66
         $command = array_shift($arguments);
67 67
 
68 68
         $argumentsString = '';
69 69
         if ($arguments) {
70 70
             // add quotes to arguments
71
-            array_walk($arguments, function (&$value) {
71
+            array_walk($arguments, function(&$value) {
72 72
                 $value = sprintf('"%s"', $value);
73 73
             });
74 74
 
Please login to merge, or discard this patch.