-
-
Notifications
You must be signed in to change notification settings - Fork 22
Log error response message #221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 12 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
14a8613
Log message field describing the error
ghostwriter 15e9c7a
Appease the CI gods
ghostwriter 0fc968f
Refactor PHP_EOL
ghostwriter f5edec5
Fix CS issue
ghostwriter 182f5f0
Fix Infection issue
ghostwriter 66ae51d
Update composer.lock
ghostwriter a663cbf
Update EnvironmentVariablesTest.php
ghostwriter 1a70daf
Update psalm.xml.dist
ghostwriter 9a92340
Update phpunit.xml.dist
ghostwriter dfed3d9
Update composer.lock
ghostwriter 9da531c
Update composer.json
ghostwriter 198bf04
Create psalm-baseline.xml
ghostwriter 485c86d
Update MergeTargetCandidateBranches.php
ghostwriter ca44fa2
Update RepositoryName.php
ghostwriter 2a5b23c
Drop psalm baseline
ghostwriter 2a02960
Fix pslam issues
ghostwriter 88794e9
Drop ReflectionProperty::setAccessible
ghostwriter 52b88f1
Fix psalm docs
ghostwriter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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,20 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
colors="true" | ||
verbose="true" | ||
failOnRisky="true" | ||
> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
cacheResultFile=".phpunit.cache/test-results" | ||
executionOrder="depends,defects" | ||
beStrictAboutOutputDuringTests="true" | ||
beStrictAboutTodoAnnotatedTests="true" | ||
convertDeprecationsToExceptions="true" | ||
failOnRisky="true" | ||
failOnWarning="true" | ||
verbose="true"> | ||
<testsuites> | ||
<testsuite name="laminas/automatic-releases unit tests"> | ||
<directory>./test/unit</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<coverage> | ||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory>src</directory> | ||
<directory suffix=".php">src</directory> | ||
</include> | ||
</coverage> | ||
</phpunit> |
This file contains hidden or 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,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<files psalm-version="5.3.0@b6faa3e96b8eb50ec71384c53799b8a107236bb6"> | ||
<file src="test/unit/Changelog/ChangelogReleaseNotesTest.php"> | ||
<UnusedMethodCall occurrences="1"> | ||
<code>setAccessible</code> | ||
</UnusedMethodCall> | ||
</file> | ||
<file src="test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/LabelTest.php"> | ||
<InvalidArgument occurrences="1"> | ||
<code>testInvalidPayload</code> | ||
ghostwriter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</InvalidArgument> | ||
</file> | ||
</files> |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.