Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function finish( |
||
26 | InstalledFileManager $fileManager, |
||
27 | FinalInstallManager $finalInstall, |
||
28 | EnvironmentManager $environment |
||
29 | ): View { |
||
30 | $finalMessages = $finalInstall->runFinal(); |
||
31 | $finalStatusMessage = $fileManager->update(); |
||
32 | $finalEnvFile = $environment->getEnvContent(); |
||
33 | |||
34 | event(new LaravelInstallerFinished); |
||
35 | |||
36 | return view( |
||
37 | 'installer::finished', |
||
38 | compact('finalMessages', 'finalStatusMessage', 'finalEnvFile') |
||
39 | ); |
||
42 |