Skip to content
Snippets Groups Projects
Select Git revision
  • f255702b2ef7a837c37ebe832bf6404bdd5bc6b2
  • master default protected
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0
10 results

ClientFactory.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 );
    		}
    	}
    }