Release 2.25 (#5109)

This commit is contained in:
Kevin Papst
2024-11-21 22:44:49 +01:00
committed by GitHub
parent 49eb7068c9
commit 0c26a2678e
261 changed files with 6431 additions and 7426 deletions

View File

@@ -22,7 +22,7 @@ class DemoFull
#[Exporter\Expose(name: 'fake-name', label: 'Protected-Property', type: 'boolean')]
protected bool $protectedProperty = false;
#[Exporter\Expose(label: 'Private-Property', type: 'integer', translationDomain: 'test')]
private int $privateProperty = 123; // @phpstan-ignore-line
private int $privateProperty = 123; // @phpstan-ignore property.onlyWritten
#[Exporter\Expose(label: 'Public-Method')]
public function publicMethod(): string
@@ -47,7 +47,7 @@ class DemoFull
return 12345;
}
// @phpstan-ignore-next-line
// @phpstan-ignore method.unused
#[Exporter\Expose(name: 'fake-method', label: 'Private-Method', type: 'boolean', translationDomain: 'bar')]
private function privateMethod(): bool
{