Issues (21)

lightning-config.dist.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
use PhpLightning\Config\LightningConfig;
6
7
return (new LightningConfig())
8
    ->setDomain('localhost')
9
    ->setReceiver('default-receiver')
10
    ->setDescriptionTemplate('Pay to %s')
11
    ->setSuccessMessage('Payment received!')
12
    ->setSendableRange(min: 100_000, max: 10_000_000_000)
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting ',' or ')' on line 12 at column 31
Loading history...
13
    ->setCallbackUrl('localhost:8000/callback')
14
    ->addBackendsFile(getcwd() . DIRECTORY_SEPARATOR . 'nostr.json');
15