Skip to content

Commit b3cf86e

Browse files
authored
Make PulseMigration compatible with Laravel v12.4, changing shouldRun() to public (#451)
1 parent 4abc3c1 commit b3cf86e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Support/PulseMigration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function getConnection(): ?string
2222
/**
2323
* Determine if the migration should run.
2424
*/
25-
protected function shouldRun(): bool
25+
public function shouldRun(): bool
2626
{
2727
if (in_array($this->driver(), ['mariadb', 'mysql', 'pgsql', 'sqlite'])) {
2828
return true;

0 commit comments

Comments
 (0)