Select Git revision
changelog.txt
-
Sebastian Pisula authoredSebastian Pisula authored
To find the state of this project's repository at the time of any of these versions, check out the tags.
MigrationFinder.php 289 B
<?php
declare(strict_types=1);
namespace WPDesk\Migrations\Finder;
use WPDesk\Migrations\AbstractMigration;
interface MigrationFinder {
/**
* @param string $directory
* @return class-string<AbstractMigration>[]
*/
public function find_migrations( string $directory): array;
}