The method unknown() does not exist on GacelaTest\Feature\Frame...icFacade\ModuleA\Facade. Since you implemented __callStatic, consider adding a @method annotation.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
25
TestStaticFacade::/** @scrutinizer ignore-call */
26
unknown();
Loading history...
26
}
27
28
public function test_module_a_static_facade(): void
29
{
30
$actual = TestStaticFacade::createString();
31
32
self::assertSame(StaticFactory::STR, $actual);
33
}
34
35
public function test_module_a_object_facade(): void
36
{
37
$actual = (new TestObjectFacade())->createString();
38
39
self::assertSame(ObjectFactory::STR, $actual);
40
}
41
42
public function test_factory_static_facade_method(): void