Skip to content
Snippets Groups Projects
Select Git revision
  • f585c763adbafd7c99454198a72967e669403536
  • main default protected
  • devel
  • 1.1.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
9 results

MigrationFactory.php

Blame
  • MigrationFactory.php 262 B
    <?php
    
    namespace WPDesk\Migrations\Version;
    
    use WPDesk\Migrations\AbstractMigration;
    
    interface MigrationFactory {
    
    	/** @param class-string<AbstractMigration> $migration_class */
    	public function create_version( string $migration_class ): AbstractMigration;
    }