-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing intl extension in workflow
- Loading branch information
1 parent
dd1630d
commit bae5ee8
Showing
5 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
/.phive export-ignore | ||
/psalm.baseline.xml export-ignore | ||
/psalm.xml export-ignore | ||
/stubs export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ jobs: | |
uses: docker://vimeo/psalm-github-actions | ||
with: | ||
args: --shepherd | ||
composer_ignore_platform_reqs: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
class MessageFormatter { | ||
|
||
public function __construct(string $locale, string $pattern){} | ||
public static function create(string $locale, string $pattern): ?MessageFormatter {} | ||
public static function formatMessage(string $locale, string $pattern, array $values): string|false {} | ||
public function format(array $values): string|false {} | ||
public function getErrorCode(): int {} | ||
public function getErrorMessage(): string {} | ||
public function getLocale(): string {} | ||
public function getPattern(): string|false {} | ||
public static function parseMessage(string $locale, string $pattern, string $message): array|false {} | ||
public function parse(string $string): array|false {} | ||
public function setPattern(string $pattern): bool {} | ||
} |