Skip to content

Commit 751ba1f

Browse files
committed
Tests: Remove final from Subscription. Set PHP_CS_FIXER_IGNORE_ENV
1 parent b537903 commit 751ba1f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
tools: php-cs-fixer, cs2pr
2424

2525
- name: Run PHP-CS-Fixer
26-
run: php-cs-fixer fix --dry-run --format checkstyle | cs2pr
26+
run: PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --format checkstyle | cs2pr
2727

2828
psalm:
2929
runs-on: ubuntu-latest

src/Subscription/Entity/Subscription.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
],
2020
)]
2121
#[ORM\Entity]
22-
final class Subscription
22+
/**
23+
* @psalm-suppress
24+
*/
25+
class Subscription
2326
{
2427
public function __construct(
2528
#[ApiProperty(readable: false, writable: false)]

0 commit comments

Comments
 (0)