Skip to content

Commit 620e05d

Browse files
committed
Removed static keyword
1 parent 3cafdbd commit 620e05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Traits/FastRefreshDatabase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ protected function calculateMigrationChecksum(): string
8282
*/
8383
protected function getCachedMigrationChecksum(): ?string
8484
{
85-
return rescue(static fn () => file_get_contents($this->getMigrationChecksumFile()), null, false);
85+
return rescue(fn () => file_get_contents($this->getMigrationChecksumFile()), null, false);
8686
}
8787

8888
/**

0 commit comments

Comments
 (0)