Add type hints from DocBlocks

This commit is contained in:
Shift
2024-02-16 21:13:14 +00:00
parent 2cb837e4b5
commit 3487f52a6b
13 changed files with 24 additions and 24 deletions

View File

@@ -108,7 +108,7 @@ class AppServiceProvider extends ServiceProvider
*
* @return void
*/
public function genKey()
public function genKey(): void
{
if (is_file(base_path('.env'))) {
if (empty(env('APP_KEY'))) {
@@ -188,7 +188,7 @@ class AppServiceProvider extends ServiceProvider
/**
* @return void
*/
private function updateApps()
private function updateApps(): void
{
// This lock ensures that the job is not invoked multiple times.
// In 5 minutes all app updates should be finished.