Skip to content

Commit

Permalink
Fix: Add DocBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 12, 2022
1 parent f9d58fa commit 7a5cd9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 29 deletions.
30 changes: 1 addition & 29 deletions psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,39 +103,11 @@
</MixedInferredReturnType>
</file>
<file src="test/Unit/SchemaNormalizerTest.php">
<MixedArgument occurrences="14">
<code>$fileInfo-&gt;getPath()</code>
<code>$fileInfo-&gt;getPath()</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
</MixedArgument>
<MixedAssignment occurrences="5">
<MixedAssignment occurrences="3">
<code>$fileInfo</code>
<code>$fileInfo</code>
<code>$normalizedFile</code>
<code>$normalizedFile</code>
<code>$schemaDecoded</code>
</MixedAssignment>
<MixedMethodCall occurrences="8">
<code>getBasename</code>
<code>getBasename</code>
<code>getPath</code>
<code>getPath</code>
<code>getRealPath</code>
<code>getRealPath</code>
<code>isFile</code>
<code>isFile</code>
</MixedMethodCall>
</file>
<file src="test/Unit/Vendor/Composer/AbstractComposerTestCase.php">
<MixedInferredReturnType occurrences="1">
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/SchemaNormalizerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ public function provideScenarioWithDefaultJsonPointerSpecification(): \Generator
$iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator(__DIR__ . '/../Fixture/SchemaNormalizer/NormalizeNormalizes/WithDefaultJsonPointerSpecification'));

foreach ($iterator as $fileInfo) {
/** @var \SplFileInfo $fileInfo */
if (!$fileInfo->isFile()) {
continue;
}
Expand Down Expand Up @@ -324,6 +325,7 @@ public function provideScenarioWithCustomJsonPointerSpecification(): \Generator
$iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator(__DIR__ . '/../Fixture/SchemaNormalizer/NormalizeNormalizes/WithCustomJsonPointerSpecification'));

foreach ($iterator as $fileInfo) {
/** @var \SplFileInfo $fileInfo */
if (!$fileInfo->isFile()) {
continue;
}
Expand Down

0 comments on commit 7a5cd9e

Please sign in to comment.