mirror of
https://github.com/friendica/friendica
synced 2025-01-08 18:44:43 +00:00
Fix indent for HEREDOC
This commit is contained in:
parent
68e729e192
commit
eb0e1c393f
1 changed files with 6 additions and 6 deletions
12
src/App.php
12
src/App.php
|
@ -235,13 +235,13 @@ class App
|
|||
DI::config()->reload();
|
||||
|
||||
if (empty(DI::config()->get('system', 'pidfile'))) {
|
||||
die(<<<TXT
|
||||
Please set system.pidfile in config/local.config.php. For example:
|
||||
die(<<< TXT
|
||||
Please set system.pidfile in config/local.config.php. For example:
|
||||
|
||||
'system' => [
|
||||
'pidfile' => '/path/to/daemon.pid',
|
||||
],
|
||||
TXT
|
||||
'system' => [
|
||||
'pidfile' => '/path/to/daemon.pid',
|
||||
],
|
||||
TXT
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue