mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 10:46:43 +02:00
refactor: add strict types declaration before each file and fix activitypub issues
fix some style issues
This commit is contained in:
parent
76afc0cfa2
commit
c72f4be6d8
291 changed files with 8727 additions and 7357 deletions
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* @copyright 2020 Podlibre
|
||||
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||||
|
|
@ -123,7 +125,7 @@ class InstallController extends Controller
|
|||
// Could not connect to the database
|
||||
// show database config view to fix value
|
||||
session()
|
||||
->setFlashdata('error', lang('Install.messages.databaseConnectError'),);
|
||||
->setFlashdata('error', lang('Install.messages.databaseConnectError'));
|
||||
|
||||
return view('install/database_config');
|
||||
}
|
||||
|
|
@ -171,7 +173,7 @@ class InstallController extends Controller
|
|||
helper('text');
|
||||
|
||||
// redirect to full install url with new baseUrl input
|
||||
return redirect()->to(reduce_double_slashes($baseUrl . '/' . config('App')->installGateway,),);
|
||||
return redirect()->to(reduce_double_slashes($baseUrl . '/' . config('App')->installGateway,));
|
||||
}
|
||||
|
||||
public function databaseConfig(): string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue