Skip to content

Commit a6219f7

Browse files
authored
Merge pull request #5 from PlannrCrm/fix/get-cached-checksum
Fix | getCachedChecksum method
2 parents 3cafdbd + 620e05d commit a6219f7

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)