Skip to content

Commit 08540f7

Browse files
authored
refactor: Fix phpstan function.inner (#9377)
1 parent 61741c5 commit 08540f7

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

tests/system/CommonHelperTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ public function testHelperLoadsAppHelperFirst(): void
142142

143143
// this chunk is not needed really; just added so that IDEs will be happy
144144
if (! function_exists('foo_bar_baz')) {
145-
function foo_bar_baz(): string
145+
function foo_bar_baz(): string // @phpstan-ignore function.inner
146146
{
147147
return __FILE__;
148148
}
149149
}
150150

151-
$this->assertSame($this->dummyHelpers[0], foo_bar_baz()); // @phpstan-ignore-line function.notFound
151+
$this->assertSame($this->dummyHelpers[0], foo_bar_baz()); // @phpstan-ignore function.notFound
152152
}
153153

154154
public function testNamespacedHelperNotFound(): void

utils/phpstan-baseline/function.inner.neon

-8
This file was deleted.

utils/phpstan-baseline/loader.neon

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ includes:
1717
- empty.property.neon
1818
- expr.resultUnused.neon
1919
- function.alreadyNarrowedType.neon
20-
- function.inner.neon
2120
- generator.valueType.neon
2221
- isset.offset.neon
2322
- isset.property.neon

0 commit comments

Comments
 (0)