Skip to content
Snippets Groups Projects
Verified Commit 0422b4c4 authored by Bartek Jaskulski's avatar Bartek Jaskulski
Browse files

fix: update method names to match code style

parent d05b0660
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ class WpdbMigrator implements Migrator {
private $logger;
/** @param string[] $migration_directories */
public static function fromDirectories( array $migration_directories ): self {
public static function from_directories( array $migration_directories ): self {
global $wpdb;
$logger = new WpdbLogger();
......@@ -47,7 +47,7 @@ class WpdbMigrator implements Migrator {
}
/** @param class-string<AbstractMigration>[] $migration_class_names */
public static function fromClasses( array $migration_class_names ): self {
public static function from_classes( array $migration_class_names ): self {
global $wpdb;
$logger = new WpdbLogger();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment