Passed
Push — main ( 6c0725...1b173c )
by Chema
16:45 queued 13:33
created

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
    ->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 10 at column 31
Loading history...
11
    ->setCallbackUrl('localhost:8000/callback')
12
    ->addBackendsFile(getcwd() . DIRECTORY_SEPARATOR . 'nostr.json');
13