@@ -65,9 +65,9 @@ |
||
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; |
@@ -81,7 +81,7 @@ |
||
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 | }); |
@@ -83,7 +83,7 @@ |
||
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 |
@@ -23,7 +23,7 @@ |
||
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), |
@@ -120,7 +120,7 @@ |
||
120 | 120 | $eg_address = $this->php_globals_finder->findExecutorGlobals($target_process_settings); |
121 | 121 | |
122 | 122 | $this->loop_provider->getMainLoop( |
123 | - function () use ($target_process_settings, $eg_address, $output): bool { |
|
123 | + function() use ($target_process_settings, $eg_address, $output): bool { |
|
124 | 124 | $output->writeln( |
125 | 125 | $this->executor_globals_reader->readCurrentFunctionName( |
126 | 126 | $target_process_settings->pid, |
@@ -122,7 +122,7 @@ |
||
122 | 122 | $eg_address = $this->php_globals_finder->findExecutorGlobals($target_process_settings); |
123 | 123 | |
124 | 124 | $this->loop_provider->getMainLoop( |
125 | - function () use ($get_trace_settings, $target_process_settings, $eg_address, $output): bool { |
|
125 | + function() use ($get_trace_settings, $target_process_settings, $eg_address, $output): bool { |
|
126 | 126 | $call_trace = $this->executor_globals_reader->readCallTrace( |
127 | 127 | $target_process_settings->pid, |
128 | 128 | $target_process_settings->php_version, |
@@ -15,7 +15,7 @@ |
||
15 | 15 | use DI\ContainerBuilder; |
16 | 16 | use PhpProfiler\Lib\Concurrency\Amphp\Task\PhpSearcherTask; |
17 | 17 | |
18 | -return function (Channel $channel): \Generator { |
|
18 | +return function(Channel $channel): \Generator { |
|
19 | 19 | |
20 | 20 | $container = (new ContainerBuilder())->addDefinitions(__DIR__ . '/../../../../config/di.php')->build(); |
21 | 21 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | use DI\ContainerBuilder; |
16 | 16 | use PhpProfiler\Lib\Concurrency\Amphp\Task\PhpReaderTask; |
17 | 17 | |
18 | -return function (Channel $channel): \Generator { |
|
18 | +return function(Channel $channel): \Generator { |
|
19 | 19 | |
20 | 20 | $container = (new ContainerBuilder())->addDefinitions(__DIR__ . '/../../../../config/di.php')->build(); |
21 | 21 |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | Promise\wait($context->send($pid)); |
56 | 56 | $readers[$pid] = $context; |
57 | 57 | } |
58 | - Loop::run(function () use (&$readers, $output) { |
|
59 | - Loop::repeat(10, function () use (&$readers, $output) { |
|
58 | + Loop::run(function() use (&$readers, $output) { |
|
59 | + Loop::repeat(10, function() use (&$readers, $output) { |
|
60 | 60 | if (empty($readers)) { |
61 | 61 | return false; |
62 | 62 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | continue; |
68 | 68 | } |
69 | 69 | $promises[] = \Amp\call( |
70 | - function () use ($reader, &$readers, $pid, $output) { |
|
70 | + function() use ($reader, &$readers, $pid, $output) { |
|
71 | 71 | /** @var string */ |
72 | 72 | unset($readers[$pid]); |
73 | 73 | $result = yield $reader->receive(); |