diff --git a/packages/framework/tests/Unit/FilesystemFindFilesTest.php b/packages/framework/tests/Unit/FilesystemFindFilesTest.php index 8ee9582a07a..bc7790024d6 100644 --- a/packages/framework/tests/Unit/FilesystemFindFilesTest.php +++ b/packages/framework/tests/Unit/FilesystemFindFilesTest.php @@ -75,7 +75,6 @@ public function testFindFilesReturnsCorrectFilesWhenUsingNestedSubdirectoriesOfD $this->assertSameArray(['apple.md', 'nested/banana.md'], 'directory', 'md', true); } - protected function assertSameArray(array $expected, string $directory, string|false $matchExtension = false, bool $recursive = false): void { $files = (new Filesystem(Hyde::getInstance()))->findFiles($directory, $matchExtension, $recursive); @@ -89,3 +88,4 @@ protected function tearDown(): void $this->cleanUpFilesystem(); } } + \ No newline at end of file