@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | * @return void |
| 11 | 11 | */ |
| 12 | 12 | function dd() { |
| 13 | - array_map(function ($x){ |
|
| 13 | + array_map(function($x) { |
|
| 14 | 14 | (\Tracy\Debugger::dump($x)); |
| 15 | 15 | }, func_get_args()); |
| 16 | 16 | |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | $manifestPath = realpath(__DIR__ . '/../www/manifest.json'); |
| 43 | 43 | $manifest = json_decode(file_get_contents($manifestPath), true); |
| 44 | 44 | |
| 45 | - if ($name && array_key_exists($name, $manifest)) { |
|
| 45 | + if($name && array_key_exists($name, $manifest)) { |
|
| 46 | 46 | $manifest = $manifest[$name]; |
| 47 | 47 | } |
| 48 | 48 | |