Skip to content
Snippets Groups Projects
Select Git revision
  • 0e1a9c19101f11e4f34eb1354eb84f0985996402
  • master default protected
  • fix/woo-stubs-dir
  • default-packages
  • use-internal-packages
  • update-setup
  • feature/wpdesk-cs
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3
  • 2.2.1
  • 2.2
  • 2.1
  • 2.0
  • 1.10.15
  • 1.10.12
  • 1.10.8
  • 1.10.7
  • 1.10.6
  • 1.10.5
  • 1.10.3
  • 1.10.2
27 results

plugin-template.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;
    }