From: Cameron Ball Date: Wed, 12 Dec 2018 07:57:04 +0000 (+0800) Subject: Fix 'glue' constnat X-Git-Url: http://git.cameron1729.xyz/?a=commitdiff_plain;h=ca6127a29335b984fdeed555861ef33fa8158714;p=SonOfLokstallBot.git Fix 'glue' constnat --- diff --git a/common.php b/common.php index 996c1aa..904c28a 100644 --- a/common.php +++ b/common.php @@ -104,7 +104,7 @@ function lines(string $string): array { return explode("\n", $string); } -const glue = 'join'; +const glue = 'glue'; function glue(string $delim): callable { return function(array $strings) use ($delim): string { return implode($delim, $strings);