Skip to content

Commit f3f9592

Browse files
committed
Use BaseMigration instead of deprecated AbstractMigration
1 parent 0f09498 commit f3f9592

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/Migrations/20221007202459_CreateFailedJobs.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22
declare(strict_types=1);
33

4-
use Migrations\AbstractMigration;
4+
use Migrations\BaseMigration;
55

6-
class CreateFailedJobs extends AbstractMigration
6+
class CreateFailedJobs extends BaseMigration
77
{
88
/**
99
* Change Method.
1010
*
1111
* More information on this method is available here:
12-
* https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method
12+
* https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method
1313
* @return void
1414
*/
1515
public function change()

0 commit comments

Comments
 (0)