mirror of
https://github.com/friendica/friendica
synced 2025-04-19 07:50:12 +00:00
Changes:
- reformatted some array - added missing documentation - added type-hints - changed double-quotes to single
This commit is contained in:
parent
c6c936a80f
commit
b8353a6eb7
10 changed files with 106 additions and 84 deletions
|
@ -363,7 +363,7 @@ class Install extends BaseModule
|
|||
* @return string The text for the next steps
|
||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||
*/
|
||||
private function whatNext()
|
||||
private function whatNext(): string
|
||||
{
|
||||
$baseurl = $this->baseUrl->get();
|
||||
return
|
||||
|
@ -383,6 +383,7 @@ class Install extends BaseModule
|
|||
* @param string $cat The category of the setting
|
||||
* @param string $key The key of the setting
|
||||
* @param null|string $default The default value
|
||||
* @return void
|
||||
*/
|
||||
private function checkSetting(Cache $configCache, array $post, string $cat, string $key, ?string $default = null)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue