Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Jan 26, 2025
1 parent 3360232 commit cac15c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 50 deletions.
50 changes: 1 addition & 49 deletions config/psalm-baseline.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="dev-master@c4055cf0d03d9df471fc6761e732550c633088c1">
<files psalm-version="dev-master@e9e270f363bd05ea3790890de3f04f6726ea5643">
<file src="../src/Psl/Async/KeyedSemaphore.php">
<PossiblyNullReference>
<code><![CDATA[resume]]></code>
Expand Down Expand Up @@ -58,54 +58,6 @@
<code><![CDATA[realpath($path)]]></code>
</RiskyTruthyFalsyComparison>
</file>
<file src="../src/Psl/IO/ReadHandleConvenienceMethodsTrait.php">
<MixedArgument>
<code><![CDATA[Str\format(
"Reached timeout before %s data could be read.",
($data->value === '') ? 'any' : 'all',
)]]></code>
<code><![CDATA[Str\format(
"%d bytes were requested, but only able to read %d bytes",
$size,
$length,
)]]></code>
</MixedArgument>
<UndefinedFunction>
<code><![CDATA[Str\format(
"Reached timeout before %s data could be read.",
($data->value === '') ? 'any' : 'all',
)]]></code>
<code><![CDATA[Str\format(
"%d bytes were requested, but only able to read %d bytes",
$size,
$length,
)]]></code>
</UndefinedFunction>
</file>
<file src="../src/Psl/IO/WriteHandleConvenienceMethodsTrait.php">
<MixedArgument>
<code><![CDATA[Str\format(
"Reached timeout before %s data could be written.",
($written->value === 0) ? 'any' : 'all',
)]]></code>
<code><![CDATA[Str\format(
"asked to write %d bytes, but only able to write %d bytes",
$original_size,
$original_size - strlen($bytes),
)]]></code>
</MixedArgument>
<UndefinedFunction>
<code><![CDATA[Str\format(
"Reached timeout before %s data could be written.",
($written->value === 0) ? 'any' : 'all',
)]]></code>
<code><![CDATA[Str\format(
"asked to write %d bytes, but only able to write %d bytes",
$original_size,
$original_size - strlen($bytes),
)]]></code>
</UndefinedFunction>
</file>
<file src="../src/Psl/Iter/random.php">
<TypeDoesNotContainType>
<code><![CDATA[$size === 0]]></code>
Expand Down
2 changes: 1 addition & 1 deletion config/psalm.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<psalm errorLevel="1" strictBinaryOperands="true" phpVersion="8.1" allowStringToStandInForClass="true" rememberPropertyAssignmentsAfterCall="false" checkForThrowsDocblock="true" checkForThrowsInGlobalScope="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://getpsalm.org/schema/config" xsi:schemaLocation="https://getpsalm.org/schema/config ../vendor/vimeo/psalm/config.xsd" errorBaseline="psalm-baseline.xml" findUnusedCode="false">
<psalm errorLevel="1" strictBinaryOperands="true" phpVersion="8.1" allowStringToStandInForClass="true" rememberPropertyAssignmentsAfterCall="false" checkForThrowsDocblock="true" checkForThrowsInGlobalScope="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://getpsalm.org/schema/config" xsi:schemaLocation="https://getpsalm.org/schema/config ../vendor/vimeo/psalm/config.xsd" errorBaseline="/tmp/endtoend-test-psl/config/psalm-baseline.xml" findUnusedCode="false">
<projectFiles>
<directory name="../src" />
<directory name="../tests/benchmark" />
Expand Down

0 comments on commit cac15c3

Please sign in to comment.