Skip to content

Commit 3160493

Browse files
committed
fix: e2e tests
1 parent c9837b6 commit 3160493

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
baseline: canvural-larastan-strict-rules
3939

4040
- repository: filamentphp/filament
41-
ref: 8d69f914b70cf0264e6f869d233ac482ae68e992
41+
ref: 59ab1677c937231c1324f79aeb4700e4bdf5ea17
4242
php-version: "8.3"
4343
config: filamentphp-filament.neon
4444
baseline: filamentphp-filament
@@ -85,7 +85,7 @@ jobs:
8585
- name: "Generate baseline"
8686
if: ${{ failure() }}
8787
working-directory: e2e
88-
run: composer exec phpstan analyse -- -c ../larastan/e2e/${{ matrix.config }} -b ../larastan/e2e/${{ matrix.baseline }}.baseline.neon
88+
run: composer exec phpstan analyse -- -c ../larastan/e2e/${{ matrix.config }} -b ../larastan/e2e/${{ matrix.baseline }}.baseline.neon --allow-empty-baseline
8989

9090
- uses: actions/upload-artifact@v4
9191
if: ${{ failure() }}

e2e/monicahq-monica.baseline.neon

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,29 @@
11
parameters:
22
ignoreErrors:
3+
-
4+
message: '#^Method App\\Domains\\Contact\\Dav\\Web\\Backend\\CardDAV\\CardDAVBackend\:\:getDeletedObjects\(\) should return Illuminate\\Support\\Collection\<\(int\|string\), App\\Domains\\Contact\\Dav\\VCardResource\> but returns Illuminate\\Support\\Collection\<TKey of \(int\|string\), TValue\>\.$#'
5+
identifier: return.type
6+
count: 1
7+
path: ../../e2e/app/Domains/Contact/Dav/Web/Backend/CardDAV/CardDAVBackend.php
8+
9+
-
10+
message: '#^Method App\\Domains\\Contact\\Dav\\Web\\Backend\\CardDAV\\CardDAVBackend\:\:getObjects\(\) should return Illuminate\\Support\\Collection\<\(int\|string\), App\\Domains\\Contact\\Dav\\VCardResource\> but returns Illuminate\\Support\\Collection\<TKey of \(int\|string\), TValue\>\.$#'
11+
identifier: return.type
12+
count: 1
13+
path: ../../e2e/app/Domains/Contact/Dav/Web/Backend/CardDAV/CardDAVBackend.php
14+
315
-
416
message: '#^PHPDoc type array\<string\>\|bool of property App\\Models\\AddressBookSubscription\:\:\$guarded is not covariant with PHPDoc type array\<string\> of overridden property Illuminate\\Database\\Eloquent\\Model\:\:\$guarded\.$#'
517
identifier: property.phpDocType
618
count: 1
719
path: ../../e2e/app/Models/AddressBookSubscription.php
820

21+
-
22+
message: '#^PHPDoc type array of property App\\Models\\File\:\:\$dispatchesEvents is not covariant with PHPDoc type array\<string, class\-string\> of overridden property Illuminate\\Database\\Eloquent\\Model\:\:\$dispatchesEvents\.$#'
23+
identifier: property.phpDocType
24+
count: 1
25+
path: ../../e2e/app/Models/File.php
26+
927
-
1028
message: '#^PHPDoc type array\<string\>\|bool of property App\\Models\\SyncToken\:\:\$guarded is not covariant with PHPDoc type array\<string\> of overridden property Illuminate\\Database\\Eloquent\\Model\:\:\$guarded\.$#'
1129
identifier: property.phpDocType

0 commit comments

Comments
 (0)