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

ArrayMigrationsRepository.php

Blame
  • ArrayMigrationsRepository.php 280 B
    <?php
    declare(strict_types=1);
    
    namespace WPDesk\Migrations;
    
    class ArrayMigrationsRepository extends AbstractMigrationsRepository {
    
    	protected function load_migrations(): void {
    		foreach ( $this->migrations_source as $class ) {
    			$this->register_migration( $class );
    		}
    	}
    }