mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 23:03:25 +09:00
Fix deprecated ${var} syntax
This commit is contained in:
parent
81daa1fa17
commit
30493947d8
3 changed files with 10 additions and 6 deletions
|
|
@ -225,7 +225,7 @@ class ServerEnv extends Base
|
|||
{
|
||||
if (is_array($value))
|
||||
{
|
||||
$value = implode(', ', $value) ?: "no additional ${key}s";
|
||||
$value = implode(', ', $value) ?: "no additional {$key}s";
|
||||
}
|
||||
|
||||
if (is_int($key) || ctype_digit($key))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue