@@ -37,7 +37,7 @@ |
||
37 | 37 | $style->table( |
38 | 38 | ['Name', 'Summary'], |
39 | 39 | $tools->map(function (Tool $tool) { |
40 | - return [\sprintf('<info>%s</info>', $tool->name()), $tool->summary() . PHP_EOL . $tool->website() . PHP_EOL]; |
|
40 | + return [\sprintf('<info>%s</info>', $tool->name()), $tool->summary().PHP_EOL.$tool->website().PHP_EOL]; |
|
41 | 41 | })->toArray() |
42 | 42 | ); |
43 | 43 | } |
@@ -42,7 +42,7 @@ |
||
42 | 42 | |
43 | 43 | private function toolsJsonDefault(): string |
44 | 44 | { |
45 | - return \getenv('TOOLBOX_JSON') ? \getenv('TOOLBOX_JSON') : __DIR__ . '/../../resources/tools.json'; |
|
45 | + return \getenv('TOOLBOX_JSON') ? \getenv('TOOLBOX_JSON') : __DIR__.'/../../resources/tools.json'; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | private function createCommandLoader(): CommandLoaderInterface |