Passed
Push — master ( e300d2...c4b978 )
by Shinji
08:54
created
src/Lib/Elf/Tls/LibThreadDbTlsFinder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,9 +65,9 @@
 block discarded – undo
65 65
     {
66 66
         $thread_pointer = $this->thread_pointer_retriever->getThreadPointer($pid);
67 67
 
68
-        [,,$thread_db_pthread_dtvp_offset] = $this->getLibThreadDbDescriptor('_thread_db_pthread_dtvp');
68
+        [,, $thread_db_pthread_dtvp_offset] = $this->getLibThreadDbDescriptor('_thread_db_pthread_dtvp');
69 69
         [$thread_db_dtv_dtv_size,,] = $this->getLibThreadDbDescriptor('_thread_db_dtv_dtv');
70
-        [,,$thread_db_dtv_t_pointer_val_offset] = $this->getLibThreadDbDescriptor('_thread_db_dtv_t_pointer_val');
70
+        [,, $thread_db_dtv_t_pointer_val_offset] = $this->getLibThreadDbDescriptor('_thread_db_dtv_t_pointer_val');
71 71
 //        [,,] = $this->getLibThreadDbDescriptor($pid, '_thread_db_link_map_l_tls_modid');
72 72
 
73 73
         $dtv_pointer_address = $thread_pointer + $thread_db_pthread_dtvp_offset;
Please login to merge, or discard this patch.
src/Lib/Elf/SymbolResolver/Elf64DynamicSymbolResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      */
82 82
     public function resolve(string $symbol_name): Elf64SymbolTableEntry
83 83
     {
84
-        $index = $this->hash_table->lookup($symbol_name, function (string $name, int $index) {
84
+        $index = $this->hash_table->lookup($symbol_name, function(string $name, int $index) {
85 85
             $symbol = $this->symbol_table->lookup($index);
86 86
             return $name === $this->string_table->lookup($symbol->st_name);
87 87
         });
Please login to merge, or discard this patch.
src/Lib/Elf/Process/ProcessModuleSymbolReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
         if ($address_and_size === null) {
84 84
             return null;
85 85
         }
86
-        [$address,] = $address_and_size;
86
+        [$address, ] = $address_and_size;
87 87
         return $address;
88 88
     }
89 89
 
Please login to merge, or discard this patch.
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
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
         $eg_address = $this->php_globals_finder->findExecutorGlobals($target_process_settings);
105 105
 
106 106
         $this->loop_provider->getMainLoop(
107
-            function () use ($get_trace_settings, $target_process_settings, $eg_address, $output): bool {
107
+            function() use ($get_trace_settings, $target_process_settings, $eg_address, $output): bool {
108 108
                 $call_trace = $this->executor_globals_reader->readCallTrace(
109 109
                     $target_process_settings->pid,
110 110
                     $eg_address,
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
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         $eg_address = $this->php_globals_finder->findExecutorGlobals($target_process_settings);
103 103
 
104 104
         $this->loop_provider->getMainLoop(
105
-            function () use ($pid, $eg_address, $output): bool {
105
+            function() use ($pid, $eg_address, $output): bool {
106 106
                 $output->writeln(
107 107
                     $this->executor_globals_reader->readCurrentFunctionName($pid, $eg_address)
108 108
                 );
Please login to merge, or discard this patch.