We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b537903 commit 751ba1fCopy full SHA for 751ba1f
.github/workflows/integration.yaml
@@ -23,7 +23,7 @@ jobs:
23
tools: php-cs-fixer, cs2pr
24
25
- name: Run PHP-CS-Fixer
26
- run: php-cs-fixer fix --dry-run --format checkstyle | cs2pr
+ run: PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --format checkstyle | cs2pr
27
28
psalm:
29
runs-on: ubuntu-latest
src/Subscription/Entity/Subscription.php
@@ -19,7 +19,10 @@
19
],
20
)]
21
#[ORM\Entity]
22
-final class Subscription
+/**
+ * @psalm-suppress
+ */
+class Subscription
{
public function __construct(
#[ApiProperty(readable: false, writable: false)]
0 commit comments