-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stepan Zolotarev
committed
Jan 29, 2025
1 parent
ef2d56a
commit cca7232
Showing
48 changed files
with
250 additions
and
272 deletions.
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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
parameters: | ||
checkMissingIterableValueType: false | ||
checkGenericClassInNonGenericObjectType: false | ||
ignoreErrors: | ||
- '#Property .* is never written, only read#' | ||
- '#Property .* is never read, only written#' | ||
level: 9 | ||
ignoreErrors: | ||
- identifier: missingType.iterableValue | ||
- identifier: property.onlyRead | ||
- identifier: property.onlyWritten | ||
- identifier: property.readOnlyByPhpDocDefaultValue |
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 |
---|---|---|
@@ -1,52 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" | ||
colors="true" | ||
cacheResult="false" | ||
convertDeprecationsToExceptions="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="true" | ||
stopOnError="false" | ||
stopOnFailure="false" | ||
beStrictAboutChangesToGlobalState="true" | ||
beStrictAboutOutputDuringTests="true" | ||
verbose="true" | ||
> | ||
<coverage> | ||
<include> | ||
<directory>./src</directory> | ||
</include> | ||
<exclude> | ||
<directory>./tests</directory> | ||
</exclude> | ||
</coverage> | ||
<php> | ||
<ini name="error_reporting" value="-1"/> | ||
<env name="REDIS_CONNECTION_DSN" value="tcp://localhost:6379"/> | ||
</php> | ||
<testsuites> | ||
|
||
<testsuite name="PHP Service Bus: Common component"> | ||
<directory>./vendor/php-service-bus/common/tests/</directory> | ||
</testsuite> | ||
|
||
<testsuite name="PHP Service Bus: Mutex component"> | ||
<directory>./vendor/php-service-bus/mutex/tests/</directory> | ||
</testsuite> | ||
|
||
<testsuite name="PHP Service Bus: Http client component"> | ||
<directory>./vendor/php-service-bus/http-client/tests/</directory> | ||
</testsuite> | ||
|
||
<testsuite name="PHP Service Bus: Message serializer"> | ||
<directory>./vendor/php-service-bus/message-serializer/tests/</directory> | ||
</testsuite> | ||
|
||
<testsuite name="PHP Service Bus: Telegram component"> | ||
<directory>./tests/</directory> | ||
</testsuite> | ||
|
||
</testsuites> | ||
</phpunit> | ||
beStrictAboutOutputDuringTests="true"> | ||
<php> | ||
<ini name="error_reporting" value="-1"/> | ||
<env name="REDIS_CONNECTION_DSN" value="tcp://localhost:6379"/> | ||
</php> | ||
<testsuites> | ||
<testsuite name="PHP Service Bus: Common component"> | ||
<directory>./vendor/php-service-bus/common/tests/</directory> | ||
</testsuite> | ||
<testsuite name="PHP Service Bus: Mutex component"> | ||
<directory>./vendor/php-service-bus/mutex/tests/</directory> | ||
</testsuite> | ||
<testsuite name="PHP Service Bus: Http client component"> | ||
<directory>./vendor/php-service-bus/http-client/tests/</directory> | ||
</testsuite> | ||
<testsuite name="PHP Service Bus: Message serializer"> | ||
<directory>./vendor/php-service-bus/message-serializer/tests/</directory> | ||
</testsuite> | ||
<testsuite name="PHP Service Bus: Telegram component"> | ||
<directory>./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory>./src</directory> | ||
</include> | ||
<exclude> | ||
<directory>./tests</directory> | ||
</exclude> | ||
</source> | ||
</phpunit> |
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
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
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
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
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
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
Oops, something went wrong.