diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 75fa08c..ed7b042 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -17,7 +17,7 @@ jobs: ci: name: "Run CI" - uses: "mimmi20/template/.github/workflows/ci.yml@master" + uses: "mimmi20/mimmi20/.github/workflows/ci.yml@main" with: extensions: "ctype, dom, iconv, mbstring, simplexml, tokenizer, xml, xmlwriter" ini-values: "opcache.enable=1, opcache.fast_shutdown=0, zend.assertions=1, assert.exception=On, intl.default_locale=de, intl.use_exceptions=1, zend.exception_ignore_args=0" @@ -27,6 +27,7 @@ jobs: skip-phplint: false skip-rector: false skip-phpmd: false + skip-psalm: false secrets: envPAT: "${{ secrets.GITHUB_TOKEN }}" diff --git a/src/Contact.php b/src/Contact.php index 416aed8..f2cdf8d 100644 --- a/src/Contact.php +++ b/src/Contact.php @@ -175,7 +175,7 @@ public function setProfession(string | null $value): void /** * @return array|array|array - * @phpstan-return array{contactId: int|null, salutation: string|null, firstname: string|null, familyname: string|null, street: string|null, housenumber: string|null, city: string|null, birthdate: string|null, phonenumber: string|null, email: string|null, profession: string|null} + * @phpstan-return array{contactId: int|null, salutation: string|null, firstname: string|null, familyname: string|null, street: string|null, housenumber: string|null, postalcode: string|null, city: string|null, birthdate: string|null, phonenumber: string|null, email: string|null, profession: string|null} * * @throws void */ diff --git a/src/ContactInterface.php b/src/ContactInterface.php index 8b8b069..4a9dc26 100644 --- a/src/ContactInterface.php +++ b/src/ContactInterface.php @@ -90,7 +90,7 @@ public function setProfession(string | null $value): void; /** * @return array|array|array - * @phpstan-return array{contactId: int|null, salutation: string|null, firstname: string|null, familyname: string|null, street: string|null, housenumber: string|null, city: string|null, birthdate: string|null, phonenumber: string|null, email: string|null, profession: string|null} + * @phpstan-return array{contactId: int|null, salutation: string|null, firstname: string|null, familyname: string|null, street: string|null, housenumber: string|null, postalcode: string|null, city: string|null, birthdate: string|null, phonenumber: string|null, email: string|null, profession: string|null} * * @throws void */