You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
200B

  1. <?php
  2. declare(strict_types=1);
  3. namespace Core;
  4. abstract class Migration
  5. {
  6. abstract public function up(Database $database): void;
  7. abstract public function down(Database $database): void;
  8. }

Powered by TurnKey Linux.