Issues (83)

src/InputLanguage/Definition.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace hanneskod\readmetester\InputLanguage;
6
7
class Definition
8
{
9
    /**
10
     * @param array<string> $attributes
11
     */
12
    public function __construct(
13
        public array $attributes = [],
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_PUBLIC, expecting T_VARIABLE on line 13 at column 8
Loading history...
14
        public string $code = '',
15
    ) {}
16
}
17