Issues (27)

src/Configuration.php (1 issue)

1
<?php
2
3
namespace VasilDakov\Econt;
4
5
final readonly class Configuration
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_READONLY, expecting T_CLASS on line 5 at column 6
Loading history...
6
{
7 24
    public function __construct(
8
        public string $username,
9
        public string $password,
10
    ) {
11 24
    }
12
}
13