We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49de21c commit 51a69beCopy full SHA for 51a69be
.github/workflows/ci.yml
@@ -26,7 +26,7 @@ jobs:
26
run: composer lint
27
28
- name: 🏁 Static analysis
29
- run: composer static-analysis
+ run: composer static-analysis --output-format=github --shepherd
30
31
- name: ✅ Run the tests
32
run: composer test
src/Codelyber.php
@@ -8,11 +8,8 @@ final class Codelyber
8
{
9
private const string GREETING = 'CodelyTV';
10
11
- private string $name;
12
-
13
- public function __construct(string $name)
+ public function __construct(private readonly string $name)
14
15
- $this->name = $name;
16
}
17
18
public function name(): string
0 commit comments