Completed
Push — master ( a823ea...a54744 )
by Shinji
19s queued 12s
created
config/di.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
 return [
25 25
     MemoryReaderInterface::class => autowire(MemoryReader::class),
26
-    ZendTypeReader::class => function () {
26
+    ZendTypeReader::class => function() {
27 27
         return new ZendTypeReader(ZendTypeReader::V74);
28 28
     },
29 29
     SymbolResolverCreatorInterface::class => autowire(Elf64SymbolResolverCreator::class),
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
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
                         $eg_address,
127 127
                         $depth
128 128
                     )
129
-                ) , PHP_EOL, PHP_EOL;
129
+                ), PHP_EOL, PHP_EOL;
130 130
                 $count_retry = 0;
131 131
                 time_nanosleep(0, $sleep_nano_seconds);
132 132
             } catch (MemoryReaderException $e) {
Please login to merge, or discard this patch.
src/Command/Inspector/GetCurrentFunctionNameCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
         $count_retry = 0;
108 108
         while ($key !== 'q' and $count_retry < 10) {
109 109
             try {
110
-                echo $this->executor_globals_reader->readCurrentFunctionName($pid, $eg_address) , PHP_EOL;
110
+                echo $this->executor_globals_reader->readCurrentFunctionName($pid, $eg_address), PHP_EOL;
111 111
                 $count_retry = 0;
112 112
                 time_nanosleep(0, $sleep_nano_seconds);
113 113
             } catch (MemoryReaderException $e) {
Please login to merge, or discard this patch.