Passed
Pull Request — master (#1)
by kazusuke
01:23
created
src/Command/Inspector/GetCurrentFunctionNameCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
         $count_retry = 0;
100 100
         while ($key !== 'q' and $count_retry < 10) {
101 101
             try {
102
-                echo $eg_reader->readCurrentFunctionName($pid, $eg_address) , PHP_EOL;
102
+                echo $eg_reader->readCurrentFunctionName($pid, $eg_address), PHP_EOL;
103 103
                 $count_retry = 0;
104 104
                 time_nanosleep(0, $sleep_nano_seconds);
105 105
             } catch (MemoryReaderException $e) {
Please login to merge, or discard this patch.
src/Command/Inspector/GetTraceCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
         $count_retry = 0;
112 112
         while ($key !== 'q' and $count_retry < 10) {
113 113
             try {
114
-                echo join(PHP_EOL, $eg_reader->readCallTrace($pid, $eg_address, $depth)) , PHP_EOL, PHP_EOL;
114
+                echo join(PHP_EOL, $eg_reader->readCallTrace($pid, $eg_address, $depth)), PHP_EOL, PHP_EOL;
115 115
                 $count_retry = 0;
116 116
                 time_nanosleep(0, $sleep_nano_seconds);
117 117
             } catch (MemoryReaderException $e) {
Please login to merge, or discard this patch.