We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent defdc96 commit c6ab437Copy full SHA for c6ab437
tests/Support/Command/CommandMockTrait.php
@@ -87,11 +87,7 @@ public function mockGeneratorSubFolders(): void
87
88
public function nativeIsSubClassOfMethodCall(array $arguments, bool $result = true): array
89
{
90
- return [
91
- 'function' => 'is_subclass_of',
92
- 'arguments' => $arguments,
93
- 'result' => $result,
94
- ];
+ return $this->functionCall('is_subclass_of', $arguments, $result);
95
}
96
97
public function nativeUcwordsMethodCall(array $arguments, string $result): array
0 commit comments