@@ -67,7 +67,7 @@ |
||
67 | 67 | |
68 | 68 | public function resolve(string $symbol_name): Elf64SymbolTableEntry |
69 | 69 | { |
70 | - $index = $this->hash_table->lookup($symbol_name, function (string $name, int $index) { |
|
70 | + $index = $this->hash_table->lookup($symbol_name, function(string $name, int $index) { |
|
71 | 71 | $symbol = $this->symbol_table->lookup($index); |
72 | 72 | return $name === $this->string_table->lookup($symbol->st_name); |
73 | 73 | }); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | return [ |
36 | 36 | MemoryReaderInterface::class => autowire(MemoryReader::class), |
37 | - ZendTypeReader::class => function () { |
|
37 | + ZendTypeReader::class => function() { |
|
38 | 38 | return new ZendTypeReader(ZendTypeReader::V80); |
39 | 39 | }, |
40 | 40 | SymbolResolverCreatorInterface::class => autowire(Elf64SymbolResolverCreator::class), |
@@ -46,6 +46,6 @@ discard block |
||
46 | 46 | ->constructorParameter('di_config_file', __DIR__ . '/di.php'), |
47 | 47 | PhpReaderTraceLoopInterface::class => autowire(PhpReaderTraceLoop::class), |
48 | 48 | ProcessSearcherInterface::class => autowire(ProcessSearcher::class), |
49 | - Config::class => fn () => Config::load(__DIR__ . '/config.php'), |
|
49 | + Config::class => fn() => Config::load(__DIR__ . '/config.php'), |
|
50 | 50 | TemplatePathResolverInterface::class => autowire(TemplatePathResolver::class), |
51 | 51 | ]; |