Skip to content

Commit

Permalink
fix fatal error
Browse files Browse the repository at this point in the history
  • Loading branch information
crstauf committed Aug 10, 2024
1 parent ae0b9e3 commit 4a29e3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions classes/migration/ActionMigrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ class ActionMigrator {
/**
* ActionMigrator constructor.
*
* @param ActionScheduler_Store $source_store Source store object.
* @param ActionScheduler_Store $destination_store Destination store object.
* @param LogMigrator $log_migrator Log migrator object.
* @param \ActionScheduler_Store $source_store Source store object.
* @param \ActionScheduler_Store $destination_store Destination store object.
* @param LogMigrator $log_migrator Log migrator object.
*/
public function __construct( ActionScheduler_Store $source_store, ActionScheduler_Store $destination_store, LogMigrator $log_migrator ) {
public function __construct( \ActionScheduler_Store $source_store, \ActionScheduler_Store $destination_store, LogMigrator $log_migrator ) {
$this->source = $source_store;
$this->destination = $destination_store;
$this->log_migrator = $log_migrator;
Expand Down

0 comments on commit 4a29e3a

Please sign in to comment.