Skip to content
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

Update dependency vimeo/psalm to v5 #14

Merged
merged 3 commits into from
Feb 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
61 changes: 55 additions & 6 deletions psalm-baseline.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,65 @@
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="4.27.0@faf106e717c37b8c81721845dba9de3d8deed8ff">
<files psalm-version="5.7.7@e028ba46ba0d7f9a78bc3201c251e137383e145f">
<file src="src/DependencyInjection/Configuration.php">
<UndefinedMethod occurrences="1">
<UndefinedMethod>
<code>children</code>
</UndefinedMethod>
</file>
<file src="src/Test/AbstractSitemapServiceTestCase.php">
<InternalClass occurrences="5">
<code>new AssertionFailedError(sprintf("The url '%s' was not expected to be called.", $url-&gt;getLoc()))</code>
<InternalClass>
<code><![CDATA[new AssertionFailedError(
sprintf("The url '%s' was expected to be called actually was not called", $data['location'])
)]]></code>
<code><![CDATA[new AssertionFailedError(
sprintf(
"The url '%s' was expected with %s changefreq. %s given.",
$url->getLoc(),
$data['changefreq'],
$url->getChangeFreq()
)
)]]></code>
<code><![CDATA[new AssertionFailedError(
sprintf(
"The url '%s' was expected with %s priority. %s given.",
$url->getLoc(),
$data['priority'],
$url->getPriority()
)
)]]></code>
<code><![CDATA[new AssertionFailedError(
sprintf("The url '%s' was expected with a different lastmod.", $url->getLoc())
)]]></code>
<code><![CDATA[new AssertionFailedError(sprintf("The url '%s' was not expected to be called.", $url->getLoc()))]]></code>
</InternalClass>
<InternalMethod occurrences="5">
<code>new AssertionFailedError(sprintf("The url '%s' was not expected to be called.", $url-&gt;getLoc()))</code>
<InternalMethod>
<code><![CDATA[new AssertionFailedError(
sprintf("The url '%s' was expected to be called actually was not called", $data['location'])
)]]></code>
<code><![CDATA[new AssertionFailedError(
sprintf(
"The url '%s' was expected with %s changefreq. %s given.",
$url->getLoc(),
$data['changefreq'],
$url->getChangeFreq()
)
)]]></code>
<code><![CDATA[new AssertionFailedError(
sprintf(
"The url '%s' was expected with %s priority. %s given.",
$url->getLoc(),
$data['priority'],
$url->getPriority()
)
)]]></code>
<code><![CDATA[new AssertionFailedError(
sprintf("The url '%s' was expected with a different lastmod.", $url->getLoc())
)]]></code>
<code><![CDATA[new AssertionFailedError(sprintf("The url '%s' was not expected to be called.", $url->getLoc()))]]></code>
</InternalMethod>
<InvalidArgument>
<code>$data</code>
<code>$data</code>
<code>$data</code>
</InvalidArgument>
</file>
</files>
4 changes: 2 additions & 2 deletions vendor-bin/tools/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^4.0",
"psalm/plugin-symfony": "^5.0",
"symfony/phpunit-bridge": "^6.0",
"vimeo/psalm": "^4.13"
"vimeo/psalm": "^5.0"
},
"config": {
"bin-dir": "../../vendor/bin",
Expand Down